~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Olaf van der Spek
  • Date: 2011-02-28 14:09:50 UTC
  • mfrom: (2207 bootstrap)
  • mto: (2209.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2210.
  • Revision ID: olafvdspek@gmail.com-20110228140950-2nu0hyzhuww3wssx
Merge trunk

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;