blob: f45caaa10dbc322836e791f7d633ab2240cbd704 [file] [log] [blame]
====
---- QUERY: primitive_groupby_bigint_pk
-- Description : Scan fact table and do a group by on a column with low NDV.
-- Target test case : Hash aggregation with small number of buckets.
SELECT l_orderkey, l_partkey,
count(*) AS cnt
FROM lineitem
GROUP BY l_orderkey,l_partkey
HAVING count(*) > 9999999999999;
---- RESULTS
---- TYPES
====