blob: 6d4fac50e9417f3b334dcf6ba23561983f0e2a82 [file] [log] [blame]
-- tpch6 using 1395599672 as a seed to the RNG
select
sum(l_extendedprice * l_discount) as revenue
from
cp.`tpch/lineitem.parquet`
where
l_shipdate >= date '1997-01-01'
and l_shipdate < date '1997-01-01' + interval '1' year
and
l_discount between 0.03 - 0.01 and 0.03 + 0.01
and l_quantity < 24;