~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2010-03-25 22:03:21 UTC
  • mto: This revision was merged to the branch mainline in revision 1408.
  • Revision ID: mordred@inaugust.com-20100325220321-bf5vs8tryb4a8ssh
Updated the search for libmemcached.

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