summaryrefslogtreecommitdiff
path: root/mysql-test/r/drop.result
diff options
context:
space:
mode:
authorunknown <dlenev@mockturtle.local>2006-08-21 12:28:35 +0400
committerunknown <dlenev@mockturtle.local>2006-08-21 12:28:35 +0400
commitcda7278dc6d5003e4bae6e1641eee0b0fb9b1ffb (patch)
tree613e3f3b49b9bd4d481ebe93ea5617e2c4bc657a /mysql-test/r/drop.result
parent96aef62c73d35a4a1c1efe6a782f515419fd18c1 (diff)
parent8daf4e8373b9fc3def33e2146445cd1600cbc084 (diff)
downloadmariadb-git-cda7278dc6d5003e4bae6e1641eee0b0fb9b1ffb.tar.gz
Merge mockturtle.local:/home/dlenev/src/mysql-5.0-bg21216-2
into mockturtle.local:/home/dlenev/src/mysql-5.1-bg19403-2 mysql-test/r/drop.result: Auto merged sql/lock.cc: Use 5.1 version of code as bug#21216 will be fixed there in different way.
Diffstat (limited to 'mysql-test/r/drop.result')
-rw-r--r--mysql-test/r/drop.result13
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/r/drop.result b/mysql-test/r/drop.result
index fb8c4fb9b37..53b2ea8c84a 100644
--- a/mysql-test/r/drop.result
+++ b/mysql-test/r/drop.result
@@ -74,3 +74,16 @@ show tables;
Tables_in_test
t1
drop table t1;
+drop database if exists mysqltest;
+drop table if exists t1;
+create table t1 (i int);
+lock tables t1 read;
+create database mysqltest;
+ drop table t1;
+show open tables;
+ drop database mysqltest;
+select 1;
+1
+1
+unlock tables;
+End of 5.0 tests