ClickHouse/dbms/src/Parsers/ParserSelectWithUnionQuery.cpp

47 lines
1.4 KiB
C++
Raw Normal View History

2018-02-25 00:50:53 +00:00
#include <Parsers/ExpressionListParsers.h>
#include <Parsers/ParserSelectWithUnionQuery.h>
#include <Parsers/ASTSelectWithUnionQuery.h>
#include <Parsers/ParserUnionQueryElement.h>
#include <Parsers/ASTExpressionList.h>
#include <Common/typeid_cast.h>
2018-02-25 00:50:53 +00:00
namespace DB
{
2018-02-25 06:34:20 +00:00
bool ParserSelectWithUnionQuery::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
2018-02-25 00:50:53 +00:00
{
ASTPtr list_node;
ParserList parser(std::make_unique<ParserUnionQueryElement>(), std::make_unique<ParserKeyword>("UNION ALL"), false);
2018-02-25 06:34:20 +00:00
if (!parser.parse(pos, list_node, expected))
2018-02-25 00:50:53 +00:00
return false;
auto select_with_union_query = std::make_shared<ASTSelectWithUnionQuery>();
2018-02-25 07:39:45 +00:00
node = select_with_union_query;
select_with_union_query->list_of_selects = std::make_shared<ASTExpressionList>();
select_with_union_query->children.push_back(select_with_union_query->list_of_selects);
// flatten inner union query
for (auto & child : list_node->children)
getSelectsFromUnionListNode(child, select_with_union_query->list_of_selects->children);
2018-02-25 07:39:45 +00:00
2018-02-25 00:50:53 +00:00
return true;
}
void ParserSelectWithUnionQuery::getSelectsFromUnionListNode(ASTPtr & ast_select, ASTs & selects)
{
if (ASTSelectWithUnionQuery * inner_union = typeid_cast<ASTSelectWithUnionQuery *>(ast_select.get()))
{
for (auto & child : inner_union->list_of_selects->children)
getSelectsFromUnionListNode(child, selects);
return;
}
selects.push_back(std::move(ast_select));
}
2018-02-25 00:50:53 +00:00
}