1
Fork 0
kantodb/testdata/sql/unimplemented/unimplemented_create_table_table_constraint_not_enforced.slt

5 lines
349 B
Text

statement error ^External error: unimplemented_sql/u339u8jzzkqdy: CREATE TABLE with table constraint PRIMARY KEY \.\. NOT ENFORCED \(MySQL syntax\)$
CREATE TABLE myschema.mytable (mycolumn BIGINT NOT NULL, PRIMARY KEY (mycolumn) NOT ENFORCED);
statement ok
CREATE TABLE myschema.mytable (mycolumn BIGINT NOT NULL, PRIMARY KEY (mycolumn) ENFORCED);