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

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

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