~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);
1502.1.30 by Brian Aker
First pass on cleanup of Stewart's patch, plus re-engineer to make it work a
2
--error 1698
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;