forked from hyrise/hyrise
-
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.
Add the JCC-H benchmark (hyrise#2249)
Adds support for the JCC-H benchmark. This... erm... gives us more options to improve our statistics components ;) Query 9 does not finish for SF 1 right now. As it works with smaller SFs, I do not consider it an issue of this PR, but of the query plan. Something to fix later.
- Loading branch information
Showing
29 changed files
with
1,131 additions
and
55 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"columns": [ | ||
{ | ||
"name": "c_custkey", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "c_name", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "c_address", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "c_nationkey", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "c_phone", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "c_acctbal", | ||
"nullable": false, | ||
"type": "float" | ||
}, | ||
{ | ||
"name": "c_mktsegment", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "c_comment", | ||
"nullable": false, | ||
"type": "string" | ||
} | ||
], | ||
"config": { | ||
"delimiter": "\n", | ||
"delimiter_escape": "\\", | ||
"escape": "\"", | ||
"null_handling": "reject_null_strings", | ||
"quote": "\"", | ||
"reject_quoted_nonstrings": true, | ||
"rfc_mode": true, | ||
"separator": "|" | ||
} | ||
} |
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,94 @@ | ||
{ | ||
"columns": [ | ||
{ | ||
"name": "l_orderkey", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "l_partkey", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "l_suppkey", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "l_linenumber", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "l_quantity", | ||
"nullable": false, | ||
"type": "float" | ||
}, | ||
{ | ||
"name": "l_extendedprice", | ||
"nullable": false, | ||
"type": "float" | ||
}, | ||
{ | ||
"name": "l_discount", | ||
"nullable": false, | ||
"type": "float" | ||
}, | ||
{ | ||
"name": "l_tax", | ||
"nullable": false, | ||
"type": "float" | ||
}, | ||
{ | ||
"name": "l_returnflag", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "l_linestatus", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "l_shipdate", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "l_commitdate", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "l_receiptdate", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "l_shipinstruct", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "l_shipmode", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "l_comment", | ||
"nullable": false, | ||
"type": "string" | ||
} | ||
], | ||
"config": { | ||
"delimiter": "\n", | ||
"delimiter_escape": "\\", | ||
"escape": "\"", | ||
"null_handling": "reject_null_strings", | ||
"quote": "\"", | ||
"reject_quoted_nonstrings": true, | ||
"rfc_mode": true, | ||
"separator": "|" | ||
} | ||
} |
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,34 @@ | ||
{ | ||
"columns": [ | ||
{ | ||
"name": "n_nationkey", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "n_name", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "n_regionkey", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "n_comment", | ||
"nullable": false, | ||
"type": "string" | ||
} | ||
], | ||
"config": { | ||
"delimiter": "\n", | ||
"delimiter_escape": "\\", | ||
"escape": "\"", | ||
"null_handling": "reject_null_strings", | ||
"quote": "\"", | ||
"reject_quoted_nonstrings": true, | ||
"rfc_mode": true, | ||
"separator": "|" | ||
} | ||
} |
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,59 @@ | ||
{ | ||
"columns": [ | ||
{ | ||
"name": "o_orderkey", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "o_custkey", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "o_orderstatus", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "o_totalprice", | ||
"nullable": false, | ||
"type": "float" | ||
}, | ||
{ | ||
"name": "o_orderdate", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "o_orderpriority", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "o_clerk", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "o_shippriority", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "o_comment", | ||
"nullable": false, | ||
"type": "string" | ||
} | ||
], | ||
"config": { | ||
"delimiter": "\n", | ||
"delimiter_escape": "\\", | ||
"escape": "\"", | ||
"null_handling": "reject_null_strings", | ||
"quote": "\"", | ||
"reject_quoted_nonstrings": true, | ||
"rfc_mode": true, | ||
"separator": "|" | ||
} | ||
} |
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,59 @@ | ||
{ | ||
"columns": [ | ||
{ | ||
"name": "p_partkey", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "p_name", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "p_mfgr", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "p_brand", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "p_type", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "p_size", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "p_container", | ||
"nullable": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "p_retailsize", | ||
"nullable": false, | ||
"type": "float" | ||
}, | ||
{ | ||
"name": "p_comment", | ||
"nullable": false, | ||
"type": "string" | ||
} | ||
], | ||
"config": { | ||
"delimiter": "\n", | ||
"delimiter_escape": "\\", | ||
"escape": "\"", | ||
"null_handling": "reject_null_strings", | ||
"quote": "\"", | ||
"reject_quoted_nonstrings": true, | ||
"rfc_mode": true, | ||
"separator": "|" | ||
} | ||
} |
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,39 @@ | ||
{ | ||
"columns": [ | ||
{ | ||
"name": "ps_partkey", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "ps_suppkey", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "ps_availqty", | ||
"nullable": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "ps_supplycost", | ||
"nullable": false, | ||
"type": "float" | ||
}, | ||
{ | ||
"name": "ps_comment", | ||
"nullable": false, | ||
"type": "string" | ||
} | ||
], | ||
"config": { | ||
"delimiter": "\n", | ||
"delimiter_escape": "\\", | ||
"escape": "\"", | ||
"null_handling": "reject_null_strings", | ||
"quote": "\"", | ||
"reject_quoted_nonstrings": true, | ||
"rfc_mode": true, | ||
"separator": "|" | ||
} | ||
} |
Oops, something went wrong.