diff options
author | unknown <dlenev@mockturtle.local> | 2006-08-21 12:28:35 +0400 |
---|---|---|
committer | unknown <dlenev@mockturtle.local> | 2006-08-21 12:28:35 +0400 |
commit | cda7278dc6d5003e4bae6e1641eee0b0fb9b1ffb (patch) | |
tree | 613e3f3b49b9bd4d481ebe93ea5617e2c4bc657a /mysql-test/r/drop.result | |
parent | 96aef62c73d35a4a1c1efe6a782f515419fd18c1 (diff) | |
parent | 8daf4e8373b9fc3def33e2146445cd1600cbc084 (diff) | |
download | mariadb-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.result | 13 |
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 |