diff options
Diffstat (limited to 'mysql-test/suite/pbxt/t/schema.test')
-rw-r--r-- | mysql-test/suite/pbxt/t/schema.test | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/suite/pbxt/t/schema.test b/mysql-test/suite/pbxt/t/schema.test index a08d9b38935..41e5231f690 100644 --- a/mysql-test/suite/pbxt/t/schema.test +++ b/mysql-test/suite/pbxt/t/schema.test @@ -10,5 +10,12 @@ drop database if exists mysqltest1; create schema foo; show create schema foo; +# force PBXT schema to be created +create table t1 (id int) engine=pbxt; show schemas; drop schema foo; + +--disable_query_log +drop table if exists t1; +drop database pbxt; +--enable_query_log |