should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
# name: benchmark/tpch/pivot/lineitem_pivot_shipdate.benchmark
# description: lineitem pivot over l_shipdate
# group: [pivot]
include benchmark/tpch/tpch_load.benchmark.in
name Lineitem Pivot (l_shipdate)
group pivot
subgroup tpch
run
SELECT l_returnflag, "1992-01-02", "1992-01-03", "1992-01-04" FROM (PIVOT lineitem ON l_shipdate USING SUM(l_extendedprice) GROUP BY l_returnflag) ORDER BY l_returnflag
result IIII sf=1
A 98400.35 628803.06 908754.78
N NULL NULL NULL
R 496508.01 941612.09 759225.87