blob: 35c584503362262773ec0078422d8f8e4e017760 [file] [log] [blame]
====
---- QUERY: primitive_groupby_decimal_highndv
-- Description : Scan fact table and do a group by on decimal column with high NDV.
-- Target test case : Hash aggregation with large number of buckets, group by decimal
-- is more popular in the finance sector.
SELECT l_extendedprice,
count(*) AS cnt
FROM lineitem
GROUP BY l_extendedprice
HAVING count(*) > 9999999999999;
---- RESULTS
---- TYPES
DECIMAL,BIGINT
====