blob: 1856804d9394e720b05db0811f42b64b3b6ffa52 [file] [log] [blame]
====
---- QUERY: primitive_groupby_bigint_lowndv
-- 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_linenumber,
count(*) AS cnt
FROM lineitem
GROUP BY l_linenumber
HAVING count(*) > 9999999999999;
---- RESULTS
---- TYPES
====