#include #include #include #include #include namespace DB { void ApplyWithGlobalVisitor::visit(ASTSelectQuery & select, const std::map & exprs, const ASTPtr & with_expression_list) { auto with = select.with(); if (with) { std::set current_names; for (const auto & child : with->children) { if (const auto * ast_with_alias = dynamic_cast(child.get())) current_names.insert(ast_with_alias->alias); } for (const auto & with_alias : exprs) { if (!current_names.count(with_alias.first)) with->children.push_back(with_alias.second->clone()); } } else select.setExpression(ASTSelectQuery::Expression::WITH, with_expression_list->clone()); } void ApplyWithGlobalVisitor::visit( ASTSelectWithUnionQuery & selects, const std::map & exprs, const ASTPtr & with_expression_list) { for (auto & select : selects.list_of_selects->children) { if (ASTSelectWithUnionQuery * node_union = select->as()) { visit(*node_union, exprs, with_expression_list); } else if (ASTSelectQuery * node_select = select->as()) { visit(*node_select, exprs, with_expression_list); } else if (ASTSelectIntersectExceptQuery * node_intersect_except = select->as()) { visit(*node_intersect_except, exprs, with_expression_list); } } } void ApplyWithGlobalVisitor::visit( ASTSelectIntersectExceptQuery & selects, const std::map & exprs, const ASTPtr & with_expression_list) { auto selects_list = selects.getListOfSelects(); for (auto & select : selects_list) { if (ASTSelectWithUnionQuery * node_union = select->as()) { visit(*node_union, exprs, with_expression_list); } else if (ASTSelectQuery * node_select = select->as()) { visit(*node_select, exprs, with_expression_list); } else if (ASTSelectIntersectExceptQuery * node_intersect_except = select->as()) { visit(*node_intersect_except, exprs, with_expression_list); } } } void ApplyWithGlobalVisitor::visit(ASTPtr & ast) { if (ASTSelectWithUnionQuery * node_union = ast->as()) { if (auto * first_select = typeid_cast(node_union->list_of_selects->children[0].get())) { ASTPtr with_expression_list = first_select->with(); if (with_expression_list) { std::map exprs; for (auto & child : with_expression_list->children) { if (auto * ast_with_alias = dynamic_cast(child.get())) exprs[ast_with_alias->alias] = child; } for (auto it = node_union->list_of_selects->children.begin() + 1; it != node_union->list_of_selects->children.end(); ++it) { if (auto * union_child = (*it)->as()) visit(*union_child, exprs, with_expression_list); else if (auto * select_child = (*it)->as()) visit(*select_child, exprs, with_expression_list); else if (auto * intersect_except_child = (*it)->as()) visit(*intersect_except_child, exprs, with_expression_list); } } } } else { // Other non-SELECT queries that contains SELECT children, such as EXPLAIN or INSERT for (auto & child : ast->children) visit(child); } } }