forked from KipData/KiteSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
178 additions
and
18 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
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
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
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 |
---|---|---|
@@ -1,33 +1,41 @@ | ||
# E061-02: BETWEEN predicate | ||
|
||
# TODO: Support `BETWEEN` on `Where` | ||
statement ok | ||
CREATE TABLE TABLE_E061_02_01_01 ( ID INT PRIMARY KEY, A INT ); | ||
|
||
# statement ok | ||
# CREATE TABLE TABLE_E061_02_01_01 ( ID INT PRIMARY KEY, A INT ); | ||
|
||
# SELECT A FROM TABLE_E061_02_01_01 WHERE A BETWEEN 1 AND 1 | ||
query I | ||
SELECT A FROM TABLE_E061_02_01_01 WHERE A BETWEEN 1 AND 1 | ||
|
||
# statement ok | ||
# CREATE TABLE TABLE_E061_02_01_02 ( ID INT PRIMARY KEY, A INT ); | ||
|
||
# sqlparser-rs unsupported | ||
# query I | ||
# SELECT A FROM TABLE_E061_02_01_02 WHERE A BETWEEN ASYMMETRIC 1 AND 1 | ||
|
||
# statement ok | ||
# CREATE TABLE TABLE_E061_02_01_03 ( ID INT PRIMARY KEY, A INT ); | ||
|
||
# sqlparser-rs unsupported | ||
# query I | ||
# SELECT A FROM TABLE_E061_02_01_03 WHERE A BETWEEN SYMMETRIC 1 AND 1 | ||
|
||
# statement ok | ||
# CREATE TABLE TABLE_E061_02_01_04 ( ID INT PRIMARY KEY, A INT ); | ||
statement ok | ||
CREATE TABLE TABLE_E061_02_01_04 ( ID INT PRIMARY KEY, A INT ); | ||
|
||
# SELECT A FROM TABLE_E061_02_01_04 WHERE A NOT BETWEEN 1 AND 1 | ||
query I | ||
SELECT A FROM TABLE_E061_02_01_04 WHERE A NOT BETWEEN 1 AND 1 | ||
|
||
# statement ok | ||
# CREATE TABLE TABLE_E061_02_01_05 ( ID INT PRIMARY KEY, A INT ); | ||
|
||
# sqlparser-rs unsupported | ||
# query I | ||
# SELECT A FROM TABLE_E061_02_01_05 WHERE A NOT BETWEEN ASYMMETRIC 1 AND 1 | ||
|
||
# statement ok | ||
# CREATE TABLE TABLE_E061_02_01_06 ( ID INT PRIMARY KEY, A INT ); | ||
|
||
# sqlparser-rs unsupported | ||
# query I | ||
# SELECT A FROM TABLE_E061_02_01_06 WHERE A NOT BETWEEN SYMMETRIC 1 AND 1 |