~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/delete.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:
7
7
DELETE from t1 where a=1;
8
8
INSERT INTO t1 VALUES (1,1);
9
9
DELETE from t1;
10
 
LOCK TABLE t1 write;
11
10
INSERT INTO t1 VALUES (1,2);
12
11
DELETE from t1;
13
 
UNLOCK TABLES;
14
12
INSERT INTO t1 VALUES (1,2);
15
13
SET AUTOCOMMIT=0;
16
14
DELETE from t1;