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

8 lines
447 B
Text

statement ok
CREATE TABLE myschema.mytable (one BIGINT NOT NULL, two BIGINT, PRIMARY KEY(one));
statement error ^External error: unimplemented_sql/kbezqzh7p6yky: CREATE INDEX with dotted column name$
CREATE INDEX mytable__idx__two ON myschema.mytable (mytable.two);
statement error ^External error: unimplemented_sql/kbezqzh7p6yky: CREATE INDEX with dotted column name$
CREATE INDEX mytable__idx__two ON myschema.mytable (myschema.mytable.two);