aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/aggregate/rollup_with_dict.sql
blob: d59e69d29be4df9a70381bdb1f05ec439ed5a9ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/* syntax version 1 */
/* postgres can not */
use plato;

--insert into Output
select val, count(*) as cnt, grouping(val) as grouping
from Input as t
group by rollup(t.`dict`["c"] as val)
order by val, cnt
;