13 lines
259 B
SQL
13 lines
259 B
SQL
# name: test/sql/attach/attach_create_index.test
|
|
# description: Test create index on an attached database with an alias
|
|
# group: [attach]
|
|
|
|
statement ok
|
|
ATTACH '' AS tmp;
|
|
|
|
statement ok
|
|
CREATE TABLE tmp.t1(id int);
|
|
|
|
statement ok
|
|
CREATE INDEX idx ON tmp.t1(id);
|