~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/blackhole.result

  • Committer: Padraig O'Sullivan
  • Date: 2009-09-13 01:03:01 UTC
  • mto: (1126.9.2 captain-20090915-01)
  • mto: This revision was merged to the branch mainline in revision 1133.
  • Revision ID: osullivan.padraig@gmail.com-20090913010301-tcvvezipx1124acy
Added calls to the dtrace delete begin/end probes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
INSERT INTO t1 VALUES (1, 1111, 11.111);
26
26
INSERT INTO t1 VALUES (2, 2222, 22.222);
27
27
INSERT INTO t1 VALUES (3, 3333, 33.333);
28
 
drop table t1;
29
 
CREATE TABLE t5 (a int) ENGINE=BLACKHOLE;
30
 
INSERT INTO t5 VALUES (1);
31
 
FLUSH TABLES WITH READ LOCK;
32
 
INSERT INTO t5 VALUES (1);
33
 
ERROR HY000: Can't execute the query because you have a conflicting read lock
34
 
UNLOCK TABLES;
35
 
INSERT INTO t5 VALUES (1);
36
 
FLUSH TABLES WITH READ LOCK;
37
 
DROP TABLE t5;
38
 
ERROR HY000: Can't execute the query because you have a conflicting read lock
39
 
UNLOCK TABLES;
40
 
INSERT INTO t5 VALUES (1);
41
 
DROP TABLE t5;
42
 
CREATE SCHEMA foo;
43
 
use foo;
44
 
CREATE TABLE A (A INT) ENGINE=BLACKHOLE;
45
 
DROP SCHEMA foo;