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

41 lines
1.7 KiB
Text

statement error ^External error: unimplemented_sql/dny7j9hx3ihha: ALTER TABLE$
ALTER TABLE mytable ADD CHECK (1=2);
statement error ^External error: unimplemented_sql/dny7j9hx3ihha: ALTER TABLE$
ALTER TABLE mytable ADD COLUMN foo BIGINT;
statement error ^External error: unimplemented_sql/dny7j9hx3ihha: ALTER TABLE$
ALTER TABLE mytable DROP CONSTRAINT foo;
statement error ^External error: unimplemented_sql/dny7j9hx3ihha: ALTER TABLE$
ALTER TABLE mytable DROP COLUMN foo;
statement error ^External error: unimplemented_sql/dny7j9hx3ihha: ALTER TABLE$
ALTER TABLE mytable DROP foo;
statement error ^External error: unimplemented_sql/dny7j9hx3ihha: ALTER TABLE$
ALTER TABLE mytable RENAME COLUMN foo TO bar;
statement error ^External error: unimplemented_sql/dny7j9hx3ihha: ALTER TABLE$
ALTER TABLE mytable RENAME foo TO bar;
statement error ^External error: unimplemented_sql/dny7j9hx3ihha: ALTER TABLE$
ALTER TABLE mytable RENAME TO bar;
statement error ^External error: unimplemented_sql/dny7j9hx3ihha: ALTER TABLE$
ALTER TABLE mytable ALTER COLUMN foo SET NOT NULL;
statement error ^External error: unimplemented_sql/dny7j9hx3ihha: ALTER TABLE$
ALTER TABLE mytable ALTER COLUMN foo DROP NOT NULL;
statement error ^External error: unimplemented_sql/dny7j9hx3ihha: ALTER TABLE$
ALTER TABLE mytable ALTER COLUMN foo SET DEFAULT 42;
statement error ^External error: unimplemented_sql/dny7j9hx3ihha: ALTER TABLE$
ALTER TABLE mytable ALTER COLUMN foo DROP DEFAULT;
statement error ^External error: unimplemented_sql/dny7j9hx3ihha: ALTER TABLE$
ALTER TABLE mytable ALTER COLUMN foo SET DATA TYPE bigint;
statement error ^External error: unimplemented_sql/dny7j9hx3ihha: ALTER TABLE$
ALTER TABLE mytable ALTER COLUMN foo ADD GENERATED ALWAYS AS IDENTITY (INCREMENT BY 1);