~drizzle-trunk/drizzle/development

1245.3.10 by Stewart Smith
add test for invalid table options on ALTER TABLE
1
CREATE TABLE t1 (a int);
2
ALTER TABLE t1 FOO=BAR, INVALIDFOOBAR=0;
1502.1.30 by Brian Aker
First pass on cleanup of Stewart's patch, plus re-engineer to make it work a
3
ERROR HY000: Unknown table engine option key/pair FOO = BAR.
1245.3.10 by Stewart Smith
add test for invalid table options on ALTER TABLE
4
SHOW WARNINGS;
5
Level	Code	Message
1502.1.30 by Brian Aker
First pass on cleanup of Stewart's patch, plus re-engineer to make it work a
6
Error	1698	Unknown table engine option key/pair FOO = BAR.
7
Error	1698	Unknown table engine option key/pair INVALIDFOOBAR = 0.
1245.3.10 by Stewart Smith
add test for invalid table options on ALTER TABLE
8
DROP TABLE t1;