~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
drop database if exists mysqltest1;
2
create schema foo;
3
show create schema foo;
4
Database	Create Database
5
foo	CREATE DATABASE `foo` /*!40100 DEFAULT CHARACTER SET latin1 */
6
show schemas;
7
Database
8
information_schema
9
foo
10
mysql
11
test
12
drop schema foo;