~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/lock_multi.result

code clean move Item_func_abs, Item_func_int_exp, Item_func_ln, Item_func_log to functions directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
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;
9
 
ERROR HY000: Can't drop database 'mysqltest_1'; database doesn't exist
10
 
End of 5.1 tests