mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
81 lines
2.4 KiB
C++
81 lines
2.4 KiB
C++
#include <Parsers/ParserPartition.h>
|
|
#include <Parsers/CommonParsers.h>
|
|
#include <Parsers/ExpressionElementParsers.h>
|
|
#include <Parsers/ExpressionListParsers.h>
|
|
#include <Parsers/ASTPartition.h>
|
|
#include <Parsers/ASTLiteral.h>
|
|
#include <Parsers/ASTFunction.h>
|
|
#include <Common/typeid_cast.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
bool ParserPartition::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
|
|
{
|
|
ParserKeyword s_id("ID");
|
|
ParserStringLiteral parser_string_literal;
|
|
ParserExpression parser_expr;
|
|
|
|
Pos begin = pos;
|
|
|
|
auto partition = std::make_shared<ASTPartition>();
|
|
|
|
if (s_id.ignore(pos, expected))
|
|
{
|
|
ASTPtr partition_id;
|
|
if (!parser_string_literal.parse(pos, partition_id, expected))
|
|
return false;
|
|
|
|
partition->id = dynamic_cast<const ASTLiteral &>(*partition_id).value.get<String>();
|
|
}
|
|
else
|
|
{
|
|
ASTPtr value;
|
|
if (!parser_expr.parse(pos, value, expected))
|
|
return false;
|
|
|
|
size_t fields_count;
|
|
StringRef fields_str;
|
|
|
|
const auto * tuple_ast = typeid_cast<const ASTFunction *>(value.get());
|
|
if (tuple_ast && tuple_ast->name == "tuple")
|
|
{
|
|
const auto * arguments_ast = dynamic_cast<const ASTExpressionList *>(tuple_ast->arguments.get());
|
|
if (arguments_ast)
|
|
fields_count = arguments_ast->children.size();
|
|
else
|
|
fields_count = 0;
|
|
|
|
Pos left_paren = begin;
|
|
Pos right_paren = pos;
|
|
|
|
while (left_paren != right_paren && left_paren->type != TokenType::OpeningRoundBracket)
|
|
++left_paren;
|
|
if (left_paren->type != TokenType::OpeningRoundBracket)
|
|
return false;
|
|
|
|
while (right_paren != left_paren && right_paren->type != TokenType::ClosingRoundBracket)
|
|
--right_paren;
|
|
if (right_paren->type != TokenType::ClosingRoundBracket)
|
|
return false;
|
|
|
|
fields_str = StringRef(left_paren->end, right_paren->begin - left_paren->end);
|
|
}
|
|
else
|
|
{
|
|
fields_count = 1;
|
|
fields_str = StringRef(begin->begin, pos->begin - begin->begin);
|
|
}
|
|
|
|
partition->value = value;
|
|
partition->children.push_back(value);
|
|
partition->fields_str = fields_str;
|
|
partition->fields_count = fields_count;
|
|
}
|
|
|
|
node = partition;
|
|
return true;
|
|
}
|
|
|
|
}
|