~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/lock_tables_lost_commit.result

  • Committer: Brian Aker
  • Date: 2009-06-05 23:10:06 UTC
  • mto: This revision was merged to the branch mainline in revision 1055.
  • Revision ID: brian@gaz-20090605231006-01nyw7pfpj2z2v8p
Remove guts in parser for LOCK TABLE.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
drop table if exists t1;
2
 
create table t1(a int);
3
 
lock tables t1 write;
4
 
insert into t1 values(10);
5
 
select * from t1;
6
 
a
7
 
10
8
 
drop table t1;