diff options
author | Paul McCullagh <paul.mccullagh@primebase.org> | 2009-08-17 17:57:58 +0200 |
---|---|---|
committer | Paul McCullagh <paul.mccullagh@primebase.org> | 2009-08-17 17:57:58 +0200 |
commit | 10cedc20e71d2879edcf3a0ed87d99798a4f8101 (patch) | |
tree | 160198e1d4c4362656b76ceaa087109c3a972475 /mysql-test/suite/pbxt/t/schema.test | |
parent | b8ed67997366e980afd0a822dbc318011f8f09c6 (diff) | |
download | mariadb-git-10cedc20e71d2879edcf3a0ed87d99798a4f8101.tar.gz |
Updated all tests for RC2
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 |