-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare reproducibility scripts for Q5
- Loading branch information
Showing
4 changed files
with
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
duckdb==0.7.1 | ||
duckdb==0.9.1 | ||
tableauhyperapi | ||
numpy | ||
matplotlib | ||
|
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,23 @@ | ||
-- Removed ORDER BY | ||
select | ||
n_name, | ||
sum(l_extendedprice * (1 - l_discount)) as revenue | ||
from | ||
customer, | ||
orders, | ||
lineitem, | ||
supplier, | ||
nation, | ||
region | ||
where | ||
c_custkey = o_custkey | ||
and l_orderkey = o_orderkey | ||
and l_suppkey = s_suppkey | ||
and c_nationkey = s_nationkey | ||
and s_nationkey = n_nationkey | ||
and n_regionkey = r_regionkey | ||
and r_name = 'ASIA' | ||
and o_orderdate >= date '1994-01-01' | ||
and o_orderdate < date '1994-01-01' + interval '1' year | ||
group by | ||
n_name |
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