mirror of https://github.com/citusdata/citus.git
36 lines
779 B
SQL
36 lines
779 B
SQL
--
|
|
-- MULTI_TPCH_QUERY3
|
|
--
|
|
|
|
-- Query #3 from the TPC-H decision support benchmark. Unlike other TPC-H tests,
|
|
-- we don't set citus.large_table_shard_count here, and instead use the default value
|
|
-- coming from postgresql.conf or multi_task_tracker_executor.conf.
|
|
|
|
|
|
ALTER SEQUENCE pg_catalog.pg_dist_shardid_seq RESTART 940000;
|
|
ALTER SEQUENCE pg_catalog.pg_dist_jobid_seq RESTART 940000;
|
|
|
|
|
|
SELECT
|
|
l_orderkey,
|
|
sum(l_extendedprice * (1 - l_discount)) as revenue,
|
|
o_orderdate,
|
|
o_shippriority
|
|
FROM
|
|
customer,
|
|
orders,
|
|
lineitem
|
|
WHERE
|
|
c_mktsegment = 'BUILDING'
|
|
AND c_custkey = o_custkey
|
|
AND l_orderkey = o_orderkey
|
|
AND o_orderdate < date '1995-03-15'
|
|
AND l_shipdate > date '1995-03-15'
|
|
GROUP BY
|
|
l_orderkey,
|
|
o_orderdate,
|
|
o_shippriority
|
|
ORDER BY
|
|
revenue DESC,
|
|
o_orderdate;
|