~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/blackhole/tests/t/blackhole.test

  • Committer: David Shrewsbury
  • Date: 2010-08-28 01:11:17 UTC
  • mfrom: (1734 trunk)
  • mto: (1734.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1735.
  • Revision ID: shrewsbury.dave@gmail.com-20100828011117-vey8js8m1tv9zke0
Merge from trunk, resolve conflict with transaction_services.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
CREATE TABLE t5 (a int) ENGINE=BLACKHOLE;
47
47
INSERT INTO t5 VALUES (1);
48
48
FLUSH TABLES WITH READ LOCK;
49
 
--error 1223
 
49
--error ER_CANT_UPDATE_WITH_READLOCK
50
50
INSERT INTO t5 VALUES (1);
51
51
UNLOCK TABLES;
52
52
INSERT INTO t5 VALUES (1);
53
53
FLUSH TABLES WITH READ LOCK;
54
 
--error 1223
 
54
--error ER_CANT_UPDATE_WITH_READLOCK
55
55
DROP TABLE t5;
56
56
UNLOCK TABLES;
57
57
INSERT INTO t5 VALUES (1);