mirror of
https://github.com/MariaDB/server.git
synced 2025-06-03 07:02:23 +03:00
22 lines
437 B
Plaintext
22 lines
437 B
Plaintext
#
|
|
# 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
|