~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/blackhole.test

Merged up with build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
UNLOCK TABLES;
56
56
INSERT INTO t5 VALUES (1);
57
57
DROP TABLE t5;
 
58
 
 
59
# Test for bug lp:492046
 
60
CREATE SCHEMA foo;
 
61
use foo;
 
62
CREATE TABLE A (A INT) ENGINE=BLACKHOLE;
 
63
DROP SCHEMA foo;
 
64