~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/delete.test

  • Committer: Brian Aker
  • Date: 2009-06-08 02:42:24 UTC
  • mfrom: (1054.1.6 merge)
  • Revision ID: brian@gaz-20090608024224-zlff1bpq62r8m5gy
Removal of LOCK TABLES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
INSERT INTO t1 VALUES (1,1);
16
16
DELETE from t1;
17
 
LOCK TABLE t1 write;
18
17
INSERT INTO t1 VALUES (1,2);
19
18
DELETE from t1;
20
 
UNLOCK TABLES;
21
19
INSERT INTO t1 VALUES (1,2);
22
20
SET AUTOCOMMIT=0;
23
21
DELETE from t1;