~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/blackhole/tests/r/blackhole.result

Add Solaris atomics fixes and test files. Add replication.h header to makefile.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
use foo;
44
44
CREATE TABLE A (A INT) ENGINE=BLACKHOLE;
45
45
DROP SCHEMA foo;
46
 
use test;
47
 
CREATE TABLE t1 (a int) ENGINE=INNODB;
48
 
ALTER TABLE t1 ENGINE=BLACKHOLE;
49
 
SHOW TABLES;
50
 
Tables_in_test
51
 
t1