Skip to content

Commit 123dd9d

Browse files
committed
Rename files and add workaround for prestissimo tpch column names
1 parent 7152357 commit 123dd9d

23 files changed

+158
-36
lines changed

benchmarks/insert/hive_sf10_ice.json

Lines changed: 0 additions & 29 deletions
This file was deleted.

benchmarks/insert/hive-tpch-parquet/cleanup_sf10.sql renamed to benchmarks/tpch-load/cleanup_sf100.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
USE tpch_sf10_load_iceberg;
1+
USE load_tpch_sf100_parquet;
22
DROP TABLE customer;
33
DROP TABLE orders;
44
DROP TABLE lineitem;

benchmarks/insert/hive-tpch-parquet/lineitem_sf10.sql renamed to benchmarks/tpch-load/hive-tpch-parquet-j/lineitem_sf100.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-- Inserting into lineitem
2-
INSERT INTO lineitem
2+
INSERT INTO lineitem orderkey
33
SELECT
4-
orderkey,
4+
l_orderkey,
55
partkey,
66
suppkey,
77
linenumber,
@@ -17,4 +17,4 @@ SELECT
1717
CAST(shipinstruct AS VARCHAR(25)),
1818
CAST(shipmode AS VARCHAR(10)),
1919
CAST(comment AS VARCHAR(44))
20-
FROM hive.tpch_sf10_parquet.lineitem;
20+
FROM tpch.sf100.lineitem;

0 commit comments

Comments
 (0)