~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: pcrews
  • Date: 2011-05-24 17:36:24 UTC
  • mfrom: (1099.4.232 drizzle)
  • Revision ID: pcrews@lucid32-20110524173624-mwr1bvq6fa1r01ao
Updated translations + 2011.05.18 tarball tag

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;