This commit is contained in:
MaxTheHuman 2021-02-09 23:50:35 +03:00 committed by Dmitry Novik
parent 209ce51078
commit 34d71ee816
2 changed files with 3 additions and 1 deletions

View File

@ -207,6 +207,8 @@ bool ParserSelectQuery::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
select_query->group_by_with_rollup = true;
else if (s_cube.ignore(pos, expected))
select_query->group_by_with_cube = true;
else if (s_grouping_sets.ignore(pos, expected))
select_query->group_by_with_grouping_sets = true;
else if (s_totals.ignore(pos, expected))
select_query->group_by_with_totals = true;
else

View File

@ -14,7 +14,7 @@ public:
Arenas arenas;
AggregatedArenasChunkInfo(Arenas arenas_)
: arenas(std::move(arenas_))
{}
{}
};
class AggregatedChunkInfo : public ChunkInfo