# # Just a couple of tests to make sure that schema works. # # Drop mysqltest1 database, as it can left from the previous tests. # --disable_warnings drop database if exists mysqltest1; --enable_warnings 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