1731.3.1
by Lee Bieber
change tests to use enum values instead of error numbers |
1 |
--error ER_UNKNOWN_SCHEMA_OPTION |
1241.17.1
by Stewart Smith
simple key,value options for CREATE DATABASE. All options are currently unknown. |
2 |
CREATE DATABASE foo unknown_key=value; |
1731.3.1
by Lee Bieber
change tests to use enum values instead of error numbers |
3 |
--error ER_UNKNOWN_SCHEMA_OPTION |
1241.17.1
by Stewart Smith
simple key,value options for CREATE DATABASE. All options are currently unknown. |
4 |
CREATE DATABASE foo unknown_key=value, anotheR_unknown_key; |
5 |
SHOW WARNINGS; |
|
1731.3.1
by Lee Bieber
change tests to use enum values instead of error numbers |
6 |
--error ER_UNKNOWN_SCHEMA_OPTION |
1241.17.1
by Stewart Smith
simple key,value options for CREATE DATABASE. All options are currently unknown. |
7 |
CREATE DATABASE foo unknown_key=42; |
1241.17.3
by Stewart Smith
handle schema options in create_db, add one for testing, test it, update schema_reader to read it (for testing) |
8 |
|
1731.3.1
by Lee Bieber
change tests to use enum values instead of error numbers |
9 |
--error ER_UNKNOWN_SCHEMA_OPTION |
1502.1.30
by Brian Aker
First pass on cleanup of Stewart's patch, plus re-engineer to make it work a |
10 |
CREATE DATABASE foo unknown_key; |
11 |
||
12 |
# These will require us to define schema engines
|
|
13 |
# in a more concrete fashion (aka which engine owns what)
|
|
14 |
#CREATE DATABASE foo super_secret_extra_database_option;
|
|
15 |
#--echo schema_reader:
|
|
16 |
#--exec ../drizzled/message/schema_reader var/master-data/foo/db.opt
|
|
17 |
#DROP DATABASE foo;
|
|
18 |
#
|
|
19 |
#CREATE DATABASE foo super_secret_extra_database_option=42;
|
|
20 |
#--echo schema_reader:
|
|
21 |
#--exec ../drizzled/message/schema_reader var/master-data/foo/db.opt
|
|
22 |
#DROP DATABASE foo;
|
|
23 |
#
|
|
24 |
#CREATE DATABASE foo super_secret_extra_database_option='Hello World!';
|
|
25 |
#--echo schema_reader:
|
|
26 |
#--exec ../drizzled/message/schema_reader var/master-data/foo/db.opt
|
|
27 |
#DROP DATABASE foo;
|
|
1241.17.3
by Stewart Smith
handle schema options in create_db, add one for testing, test it, update schema_reader to read it (for testing) |
28 |