mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
fixes
This commit is contained in:
parent
209ce51078
commit
34d71ee816
@ -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
|
||||
|
@ -14,7 +14,7 @@ public:
|
||||
Arenas arenas;
|
||||
AggregatedArenasChunkInfo(Arenas arenas_)
|
||||
: arenas(std::move(arenas_))
|
||||
{}
|
||||
{}
|
||||
};
|
||||
|
||||
class AggregatedChunkInfo : public ChunkInfo
|
||||
|
Loading…
Reference in New Issue
Block a user