-- -- MULTI_TPCH_QUERY6 -- ALTER SEQUENCE pg_catalog.pg_dist_shardid_seq RESTART 950000; ALTER SEQUENCE pg_catalog.pg_dist_jobid_seq RESTART 950000; -- Change configuration to treat lineitem and orders tables as large SET citus.large_table_shard_count TO 2; -- Query #6 from the TPC-H decision support benchmark SELECT sum(l_extendedprice * l_discount) as revenue FROM lineitem WHERE l_shipdate >= date '1994-01-01' and l_shipdate < date '1994-01-01' + interval '1 year' and l_discount between 0.06 - 0.01 and 0.06 + 0.01 and l_quantity < 24; revenue ------------- 243277.7858 (1 row)