~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
758.2.4 by Andrew Hutchings
Fix tests for modified code
5
foo	CREATE DATABASE `foo`
1 by brian
clean slate
6
show schemas;
7
Database
8
information_schema
9
foo
10
mysql
11
test
12
drop schema foo;