mirror of
https://github.com/MariaDB/server.git
synced 2025-09-09 18:40:27 +03:00
15 lines
280 B
Plaintext
15 lines
280 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;
|
|
show schemas;
|
|
drop schema foo;
|