ClickHouse/src/Interpreters/RequiredSourceColumnsVisitor.cpp

217 lines
6.3 KiB
C++
Raw Normal View History

#include <Interpreters/RequiredSourceColumnsVisitor.h>
#include <Common/typeid_cast.h>
#include <Core/Names.h>
#include <Parsers/IAST.h>
#include <Parsers/ASTIdentifier.h>
#include <Parsers/ASTFunction.h>
#include <Parsers/ASTSelectQuery.h>
#include <Parsers/ASTSubquery.h>
#include <Parsers/ASTTablesInSelectQuery.h>
namespace DB
{
namespace ErrorCodes
{
extern const int TYPE_MISMATCH;
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
}
std::vector<String> RequiredSourceColumnsMatcher::extractNamesFromLambda(const ASTFunction & node)
{
if (node.arguments->children.size() != 2)
throw Exception("lambda requires two arguments", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
2019-03-11 13:22:51 +00:00
const auto * lambda_args_tuple = node.arguments->children[0]->as<ASTFunction>();
if (!lambda_args_tuple || lambda_args_tuple->name != "tuple")
throw Exception("First argument of lambda must be a tuple", ErrorCodes::TYPE_MISMATCH);
std::vector<String> names;
for (auto & child : lambda_args_tuple->arguments->children)
{
2019-03-11 13:22:51 +00:00
const auto * identifier = child->as<ASTIdentifier>();
if (!identifier)
throw Exception("lambda argument declarations must be identifiers", ErrorCodes::TYPE_MISMATCH);
names.push_back(identifier->name());
}
return names;
}
bool RequiredSourceColumnsMatcher::needChildVisit(const ASTPtr & node, const ASTPtr & child)
{
2019-03-11 13:22:51 +00:00
if (child->as<ASTSelectQuery>())
return false;
/// Processed. Do not need children.
2019-03-11 13:22:51 +00:00
if (node->as<ASTTableExpression>() || node->as<ASTArrayJoin>() || node->as<ASTSelectQuery>())
return false;
2019-03-11 13:22:51 +00:00
if (const auto * f = node->as<ASTFunction>())
{
2021-02-28 07:25:56 +00:00
/// "indexHint" is a special function for index analysis.
/// Everything that is inside it is not calculated. See KeyCondition
/// "lambda" visit children itself.
2021-02-28 07:25:56 +00:00
if (f->name == "indexHint" || f->name == "lambda")
return false;
}
return true;
}
void RequiredSourceColumnsMatcher::visit(const ASTPtr & ast, Data & data)
{
/// results are columns
2019-03-11 13:22:51 +00:00
if (auto * t = ast->as<ASTIdentifier>())
{
visit(*t, ast, data);
2019-02-22 13:33:56 +00:00
return;
}
2019-03-11 13:22:51 +00:00
if (auto * t = ast->as<ASTFunction>())
{
data.addColumnAliasIfAny(*ast);
visit(*t, ast, data);
2019-02-22 13:33:56 +00:00
return;
}
/// results are tables
2019-03-11 13:22:51 +00:00
if (auto * t = ast->as<ASTTablesInSelectQueryElement>())
{
visit(*t, ast, data);
2019-02-22 13:33:56 +00:00
return;
}
2019-03-11 13:22:51 +00:00
if (auto * t = ast->as<ASTTableExpression>())
{
visit(*t, ast, data);
2019-02-22 13:33:56 +00:00
return;
}
2020-04-12 03:20:15 +00:00
2019-03-11 13:22:51 +00:00
if (auto * t = ast->as<ASTSelectQuery>())
{
2019-02-22 13:33:56 +00:00
visit(*t, ast, data);
return;
}
2020-04-12 03:20:15 +00:00
2019-03-11 13:22:51 +00:00
if (ast->as<ASTSubquery>())
{
2019-02-22 13:33:56 +00:00
return;
}
/// other
2019-03-11 13:22:51 +00:00
if (auto * t = ast->as<ASTArrayJoin>())
{
data.has_array_join = true;
2019-02-22 13:33:56 +00:00
visit(*t, ast, data);
return;
}
}
void RequiredSourceColumnsMatcher::visit(const ASTSelectQuery & select, const ASTPtr &, Data & data)
{
/// special case for top-level SELECT items: they are publics
for (auto & node : select.select()->children)
{
2019-03-11 13:22:51 +00:00
if (const auto * identifier = node->as<ASTIdentifier>())
data.addColumnIdentifier(*identifier);
else
data.addColumnAliasIfAny(*node);
}
if (const auto & with = select.with())
2021-08-10 15:21:23 +00:00
{
for (auto & node : with->children)
{
if (const auto * identifier = node->as<ASTIdentifier>())
data.addColumnIdentifier(*identifier);
else
data.addColumnAliasIfAny(*node);
}
}
std::vector<ASTPtr *> out;
2020-04-22 06:01:33 +00:00
for (const auto & node : select.children)
2021-01-19 15:27:16 +00:00
{
// We should not go into WITH statement because all needed aliases are already expanded to
// the right place after normalization. And it might contain unused unknown columns.
if (node != select.select() && node != select.with())
Visitor(data).visit(node);
2021-01-19 15:27:16 +00:00
}
/// revisit select_expression_list (with children) when all the aliases are set
Visitor(data).visit(select.select());
}
void RequiredSourceColumnsMatcher::visit(const ASTIdentifier & node, const ASTPtr &, Data & data)
{
// FIXME(ilezhankin): shouldn't ever encounter
if (node.name().empty())
throw Exception("Expected not empty name", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
if (!data.private_aliases.count(node.name()))
data.addColumnIdentifier(node);
}
void RequiredSourceColumnsMatcher::visit(const ASTFunction & node, const ASTPtr &, Data & data)
{
/// Do not add formal parameters of the lambda expression
if (node.name == "lambda")
{
Names local_aliases;
for (const auto & name : extractNamesFromLambda(node))
if (data.private_aliases.insert(name).second)
local_aliases.push_back(name);
/// visit child with masked local aliases
RequiredSourceColumnsVisitor(data).visit(node.arguments->children[1]);
for (const auto & name : local_aliases)
data.private_aliases.erase(name);
}
}
void RequiredSourceColumnsMatcher::visit(const ASTTablesInSelectQueryElement & node, const ASTPtr &, Data & data)
{
2020-04-22 06:01:33 +00:00
for (const auto & child : node.children)
2020-04-15 10:07:16 +00:00
if (child->as<ASTTableJoin>())
data.has_table_join = true;
}
/// ASTIdentifiers here are tables. Do not visit them as generic ones.
2020-04-14 14:43:09 +00:00
void RequiredSourceColumnsMatcher::visit(const ASTTableExpression &, const ASTPtr &, Data &)
{
}
2019-02-22 13:33:56 +00:00
void RequiredSourceColumnsMatcher::visit(const ASTArrayJoin & node, const ASTPtr &, Data & data)
{
ASTPtr expression_list = node.expression_list;
if (!expression_list || expression_list->children.empty())
throw Exception("Expected not empty expression_list", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
std::vector<ASTPtr *> out;
/// Tech debt. Ignore ARRAY JOIN top-level identifiers and aliases. There's its own logic for them.
for (auto & expr : expression_list->children)
{
data.addArrayJoinAliasIfAny(*expr);
2019-03-11 13:22:51 +00:00
if (const auto * identifier = expr->as<ASTIdentifier>())
{
data.addArrayJoinIdentifier(*identifier);
continue;
}
out.push_back(&expr);
}
2019-02-22 13:33:56 +00:00
for (ASTPtr * add_node : out)
Visitor(data).visit(*add_node);
}
}