summaryrefslogtreecommitdiff
path: root/mysql-test/t/drop.test
diff options
context:
space:
mode:
authorsasha@mysql.sashanet.com <>2001-06-21 16:48:18 -0600
committersasha@mysql.sashanet.com <>2001-06-21 16:48:18 -0600
commitbd1500fc10f9f5646603da663de6a748da9e741c (patch)
tree129d0cbf02340b7b38f70b64e68c5bd8c828f01a /mysql-test/t/drop.test
parent1e76c806eb348c6fc6b56824c22f312821017f1e (diff)
downloadmariadb-git-bd1500fc10f9f5646603da663de6a748da9e741c.tar.gz
merged test from 4.0
Diffstat (limited to 'mysql-test/t/drop.test')
-rw-r--r--mysql-test/t/drop.test18
1 files changed, 18 insertions, 0 deletions
diff --git a/mysql-test/t/drop.test b/mysql-test/t/drop.test
index 8f9aa852e8b..2a45fe8253b 100644
--- a/mysql-test/t/drop.test
+++ b/mysql-test/t/drop.test
@@ -10,6 +10,22 @@ insert into t1 values(2);
create table t1(n int);
drop table 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;
flush tables with read lock;
--error 1209
@@ -23,3 +39,5 @@ drop database foo;
unlock tables;
drop database foo;
show databases;
+
+