summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/blocks/agg_by_key_mixed_distinct.yql
blob: 9ee6072f565217dfbb952c14fcbd2a74d7ec1e26 (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,min(x),sum(distinct x) from as_table($data) group by y order by y;