blob: a08d9b38935990edb5915894bceb233fb59ddf34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#
# 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;
|