~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
#
2
# Just a couple of tests to make sure that schema works.
3
#
4
# Drop mysqltest1 database, as it can left from the previous tests.
5
#
6
7
--disable_warnings
8
drop database if exists mysqltest1;
9
--enable_warnings
10
11
create schema foo;
12
show create schema foo;
13
show schemas;
14
drop schema foo;