~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/regression/t/682006.test

Merge Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
create table t1 (a int);
 
3
create table t2 (a int);
 
4
 
 
5
flush tables with read lock;
 
6
 
 
7
connect (con1,localhost,root,,);
 
8
connection con1;
 
9
 
 
10
--error ER_NO_LOCK_HELD
 
11
UNLOCK TABLES;
 
12
 
 
13
connection default;
 
14
disconnect con1;
 
15
unlock tables;
 
16
drop table t1,t2;