forked from duckdb/duckdb
-
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.
Merge branch 'main' into fivetran_regression
- Loading branch information
Showing
211 changed files
with
5,492 additions
and
810 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
26 changes: 0 additions & 26 deletions
26
.github/patches/extensions/delta/multifilereader_tablefunction_param.patch
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# name: benchmark/tpch/struct/tpch_q1_struct.benchmark | ||
# description: Run Q01 over lineitem stored in structs | ||
# group: [struct] | ||
|
||
name Q01 Structs | ||
group tpch | ||
subgroup sf1 | ||
|
||
require tpch | ||
|
||
load | ||
CALL dbgen(sf=1, suffix='_normalized'); | ||
CREATE TABLE lineitem_struct AS SELECT lineitem_normalized AS struct_val FROM lineitem_normalized; | ||
CREATE VIEW lineitem AS SELECT UNNEST(struct_val) FROM lineitem_struct; | ||
|
||
run extension/tpch/dbgen/queries/q01.sql | ||
|
||
result extension/tpch/dbgen/answers/sf1/q01.csv |
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,18 @@ | ||
# name: benchmark/tpch/struct/tpch_q1_struct_nested.benchmark | ||
# description: Run Q01 over lineitem stored in nested structs | ||
# group: [struct] | ||
|
||
name Q01 Structs | ||
group tpch | ||
subgroup sf1 | ||
|
||
require tpch | ||
|
||
load | ||
CALL dbgen(sf=1, suffix='_normalized'); | ||
CREATE TABLE lineitem_struct AS SELECT {'id': rowid, 'values': lineitem_normalized} AS struct_val FROM lineitem_normalized; | ||
CREATE VIEW lineitem AS SELECT UNNEST(struct_val, recursive := true) FROM lineitem_struct; | ||
|
||
run extension/tpch/dbgen/queries/q01.sql | ||
|
||
result extension/tpch/dbgen/answers/sf1/q01.csv |
Binary file not shown.
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
Oops, something went wrong.