-
Notifications
You must be signed in to change notification settings - Fork 25
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 #106 from nickgerrets/tpcds
TPC-DS queries and BETWEEN comparison
- Loading branch information
Showing
7 changed files
with
579 additions
and
9 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
Submodule substrait
updated
21 files
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/test_between.test | ||
# description: Test BETWEEN comparison | ||
# group: [sql] | ||
|
||
require substrait | ||
|
||
statement ok | ||
PRAGMA enable_verification | ||
|
||
statement ok | ||
create table t as select * from range(100) as t(x) | ||
|
||
statement ok | ||
CALL get_substrait('select * from t where x BETWEEN 4 AND 6;', enable_optimizer = false ); |
Oops, something went wrong.