ClickHouse/src/Parsers/ParserSelectWithUnionQuery.cpp

85 lines
2.9 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-04-19 03:08:22 +00:00
static void getSelectsFromUnionListNode(ASTPtr & ast_select, ASTs & selects)
{
2019-03-11 13:22:51 +00:00
if (auto * inner_union = ast_select->as<ASTSelectWithUnionQuery>())
2018-04-19 03:08:22 +00:00
{
for (auto & child : inner_union->list_of_selects->children)
getSelectsFromUnionListNode(child, selects);
return;
}
selects.push_back(std::move(ast_select));
}
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_union(std::make_unique<ParserUnionQueryElement>(), std::make_unique<ParserKeyword>("UNION"), false);
2020-10-24 13:41:20 +00:00
ParserList parser_union_all(std::make_unique<ParserUnionQueryElement>(), std::make_unique<ParserKeyword>("UNION ALL"), false);
ParserList parser_union_distinct(std::make_unique<ParserUnionQueryElement>(), std::make_unique<ParserKeyword>("UNION DISTINCT"), false);
auto begin = pos;
auto current_expected = expected;
ASTSelectWithUnionQuery::Mode union_mode = ASTSelectWithUnionQuery::Mode::ALL;
/// Parser SELECT lists and UNION type, must have UNION
2020-10-24 13:41:20 +00:00
auto union_parser = [&](auto & parser, auto mode)
{
if (!parser.parse(pos, list_node, expected))
{
pos = begin;
expected = current_expected;
return false;
}
/// number of SELECT lists should not less than 2
if (list_node->children.size() < 2)
{
pos = begin;
expected = current_expected;
return false;
}
union_mode = mode;
return true;
};
/// We first parse: SELECT ... UNION SELECT ...
/// SELECT ... UNION ALL SELECT ...
/// SELECT ... UNION DISTINCT SELECT ...
if (!union_parser(parser_union, ASTSelectWithUnionQuery::Mode::Unspecified)
&& !union_parser(parser_union_all, ASTSelectWithUnionQuery::Mode::ALL)
&& !union_parser(parser_union_distinct, ASTSelectWithUnionQuery::Mode::DISTINCT))
{
/// If above parse failed, we back to parse SELECT without UNION
if (!parser_union.parse(pos, list_node, expected))
return false;
}
2018-02-25 00:50:53 +00:00
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);
select_with_union_query->mode = union_mode;
// 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;
}
}