Files
chaisql/sqltests/CREATE_INDEX/undeclared.sql
Asdine El Hrychy 613ca304f4 remove rowid
2025-09-07 23:29:43 +08:00

15 lines
381 B
SQL

-- test: undeclared column
CREATE TABLE test (a int primary key);
CREATE INDEX test_b_idx ON test(b);
-- error:
-- test: undeclared column: IF NOT EXISTS
CREATE TABLE test (a int primary key);
CREATE INDEX IF NOT EXISTS test_b_idx ON test(b);
-- error:
-- test: undeclared column: other columns
CREATE TABLE test(b int primary key);
CREATE INDEX test_a_idx ON test(a);
-- error: