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

5 lines
334 B
Text

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