~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
1273.19.28 by Brian Aker
More cleanup on ALTER SCHEMA. Hey! MySQL never had errors on half of it...
5
foo	CREATE DATABASE `foo` COLLATE = utf8_general_ci
1 by brian
clean slate
6
show schemas;
7
Database
1420 by Brian Aker
Updated to use show schemas specific table.
8
DATA_DICTIONARY
1273.13.38 by Brian Aker
Add in new show work.
9
foo
1420 by Brian Aker
Updated to use show schemas specific table.
10
INFORMATION_SCHEMA
1 by brian
clean slate
11
mysql
12
test
13
drop schema foo;