mariadb/mysql-test/r/schema.result
unknown d352949e1a Update to add keyword "SCHEMA" and "SCHEMAS". Small test case was added too.
sql/lex.h:
  Update to add compatibility keyword "SCHEMA"
2004-10-01 12:39:11 -07:00

10 lines
190 B
Text

create schema foo;
show create schema foo;
Database Create Database
foo CREATE DATABASE `foo` /*!40100 DEFAULT CHARACTER SET latin1 */
show schemas;
Database
foo
mysql
test
drop schema foo;