blob: 91808d2d02b033f5fd0bc16e9d9f09b3a536f781 [file] [log] [blame]
create table test(
col1 string,
col2 int
);
select grouping(col2) from test group by col2 with rollup;
select GROUPING(col2) from test group by col2 with rollup;