~drizzle-trunk/drizzle/development

1502.1.30 by Brian Aker
First pass on cleanup of Stewart's patch, plus re-engineer to make it work a
1
--error 1698
1245.3.9 by Stewart Smith
add test for invalid table options on CREATE TABLE
2
CREATE TABLE t1 (a int) 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
4
--error 1698
5
CREATE TABLE t1 (a int) INVALIDFOOBAR=0;
6
7
--error 1698
8
CREATE TABLE t1 (a int) INVALIDFOOBAR=foo;
9
10
--error 1698
11
CREATE TABLE t1 (a int) INVALIDFOOBAR="foa";