~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);
1731.3.1 by Lee Bieber
change tests to use enum values instead of error numbers
2
--error ER_UNKNOWN_ENGINE_OPTION
1245.3.10 by Stewart Smith
add test for invalid table options on ALTER TABLE
3
ALTER TABLE t1 FOO=BAR, INVALIDFOOBAR=0;
4
SHOW WARNINGS;
5
DROP TABLE t1;