1
by brian
clean slate |
1 |
drop table if exists t1,t2;
|
2 |
CREATE DATABASE mysqltest_1;
|
|
3 |
FLUSH TABLES WITH READ LOCK;
|
|
4 |
DROP DATABASE mysqltest_1;
|
|
5 |
DROP DATABASE mysqltest_1;
|
|
6 |
ERROR HY000: Can't execute the query because you have a conflicting read lock
|
|
7 |
UNLOCK TABLES;
|
|
8 |
DROP DATABASE mysqltest_1;
|
|
1843.7.6
by Brian Aker
This cleans up error messages to state "schema" instead of database. |
9 |
ERROR HY000: Can't drop schema 'mysqltest_1'; schema doesn't exist
|
1
by brian
clean slate |
10 |
End of 5.1 tests
|