-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12183 from Mytherin/createindexcorrectdb
Mark correct database as modified in CreateIndex
Showing
2 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# name: test/sql/attach/attach_create_index.test | ||
# description: Test create index on an attached database with an alias | ||
# group: [attach] | ||
|
||
require skip_reload | ||
|
||
statement ok | ||
ATTACH '' AS tmp; | ||
|
||
statement ok | ||
CREATE TABLE tmp.t1(id int); | ||
|
||
statement ok | ||
CREATE INDEX idx ON tmp.t1(id); |