#include #include #include #include #include #include #include #include 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(); if (s_id.ignore(pos, expected)) { ASTPtr partition_id; if (!parser_string_literal.parse(pos, partition_id, expected)) return false; partition->id = partition_id->as()->value.get(); } else { ASTPtr value; if (!parser_expr.parse(pos, value, expected)) return false; size_t fields_count; StringRef fields_str; const auto * tuple_ast = value->as(); if (tuple_ast && tuple_ast->name == "tuple") { const auto * arguments_ast = tuple_ast->arguments->as(); 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; } }