1
by brian
clean slate |
1 |
drop database if exists mysqltest1; |
2 |
create schema foo; |
|
3 |
show create schema foo; |
|
4 |
Database Create Database |
|
520.1.18
by Brian Aker
A bunch more test fixes. |
5 |
foo CREATE DATABASE `foo` /*!40100 DEFAULT CHARACTER SET utf8 */ |
1
by brian
clean slate |
6 |
show schemas; |
7 |
Database
|
|
8 |
information_schema
|
|
9 |
foo
|
|
10 |
mysql
|
|
11 |
test
|
|
12 |
drop schema foo; |