mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
d352949e1a
sql/lex.h: Update to add compatibility keyword "SCHEMA"
10 lines
190 B
Text
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;
|