~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/blackhole.test

  • Committer: Brian Aker
  • Date: 2009-12-02 07:42:48 UTC
  • mfrom: (1236.1.2 push)
  • Revision ID: brian@gaz-20091202074248-svgtvfqvpzxt9lh3
Merge current set for staging.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
INSERT INTO t1 VALUES (2, 2222, 22.222);
42
42
INSERT INTO t1 VALUES (3, 3333, 33.333);
43
43
 
 
44
# Double check that read locks are still being honored by the kernel.
 
45
CREATE TABLE t5 (a int) ENGINE=BLACKHOLE;
 
46
INSERT INTO t5 VALUES (1);
 
47
FLUSH TABLES WITH READ LOCK;
 
48
--error 1223
 
49
INSERT INTO t5 VALUES (1);
 
50
UNLOCK TABLES;
 
51
INSERT INTO t5 VALUES (1);
 
52
FLUSH TABLES WITH READ LOCK;
 
53
--error 1223
 
54
DROP TABLE t5;
 
55
UNLOCK TABLES;
 
56
INSERT INTO t5 VALUES (1);
 
57
DROP TABLE t5;