-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alex Chi <[email protected]>
- Loading branch information
Showing
3 changed files
with
21 additions
and
16 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,20 @@ | ||
statement ok | ||
CREATE TABLE t1(v1 integer, v2 integer); | ||
|
||
statement ok | ||
INSERT INTO t1 VALUES (0, 0), (1, 1), (2, 2); | ||
|
||
statement ok | ||
CREATE INDEX t1v2a ON t1 (v2); | ||
|
||
statement ok | ||
CREATE INDEX t1v2b ON t1 USING bplustree (v2); | ||
|
||
statement ok | ||
CREATE INDEX t1v2c ON t1 USING hash (v2); | ||
|
||
statement ok | ||
CREATE INDEX t1v2d ON t1 USING stl_ordered (v2); | ||
|
||
statement ok | ||
CREATE INDEX t1v2e ON t1 USING stl_unordered (v2); |
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