5 lines
266 B
Text
5 lines
266 B
Text
statement ok
|
|
CREATE TABLE myschema.mytable (one BIGINT NOT NULL, two BIGINT, PRIMARY KEY(one));
|
|
|
|
statement error ^External error: unimplemented_sql/w7t6c8xrehsnh: CREATE INDEX \.\. WITH$
|
|
CREATE INDEX mytable__idx__two ON myschema.mytable (two) WITH (fillfactor=42);
|