mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
merged test from 4.0
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
n
|
n
|
||||||
1
|
1
|
||||||
|
n
|
||||||
|
4
|
||||||
Database
|
Database
|
||||||
foo
|
foo
|
||||||
mysql
|
mysql
|
||||||
|
@ -10,6 +10,22 @@ insert into t1 values(2);
|
|||||||
create table t1(n int);
|
create table t1(n int);
|
||||||
drop table t1;
|
drop table t1;
|
||||||
select * from t1;
|
select * from t1;
|
||||||
|
|
||||||
|
#now test for a bug in drop database - it is important that the name
|
||||||
|
#of the table is the same as the name of the database - in the original
|
||||||
|
#code this triggered a bug
|
||||||
|
drop database if exists foo;
|
||||||
|
create database foo;
|
||||||
|
drop database if exists foo;
|
||||||
|
create database foo;
|
||||||
|
create table foo.foo (n int);
|
||||||
|
insert into foo.foo values (4);
|
||||||
|
select * from foo.foo;
|
||||||
|
drop database if exists foo;
|
||||||
|
create database foo;
|
||||||
|
drop database foo;
|
||||||
|
|
||||||
|
# test drop/create database and FLUSH TABLES WITH READ LOCK
|
||||||
drop database if exists foo;
|
drop database if exists foo;
|
||||||
flush tables with read lock;
|
flush tables with read lock;
|
||||||
--error 1209
|
--error 1209
|
||||||
@ -23,3 +39,5 @@ drop database foo;
|
|||||||
unlock tables;
|
unlock tables;
|
||||||
drop database foo;
|
drop database foo;
|
||||||
show databases;
|
show databases;
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user