~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
8
9
10
--source include/have_linux.inc
--source include/not_valgrind.inc
SET SESSION storage_engine=pbxt;
CREATE TABLE t1 (a int primary key);
CREATE TABLE t2 (a int primary key);
DROP TABLE t1;
DROP TABLE t2;
--error ER_BAD_TABLE_ERROR
DROP TABLE t3;