summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/blocks/agg_by_key_only_distinct.yql
blob: 35163e00850d53cf526a97a44406ddd6ce69ff52 (plain) (blame)
1
2
3
4
5
pragma config.flags("PeepholeFlags","UseAggPhases");

$data = [<|x:1,y:0|>,<|x:1,y:0|>,<|x:2,y:1|>];

select y,sum(distinct x) from as_table($data) group by y order by y;