mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
#include <Interpreters/FunctionNameNormalizer.h>
|
|
|
|
#include <Parsers/ASTColumnDeclaration.h>
|
|
#include <Parsers/ASTCreateQuery.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
const String & getFunctionCanonicalNameIfAny(const String & name);
|
|
const String & getAggregateFunctionCanonicalNameIfAny(const String & name);
|
|
|
|
void FunctionNameNormalizer::visit(IAST * ast)
|
|
{
|
|
if (!ast)
|
|
return;
|
|
|
|
// Normalize only selected children. Avoid normalizing engine clause because some engine might
|
|
// have the same name as function, e.g. Log.
|
|
if (auto * node_storage = ast->as<ASTStorage>())
|
|
{
|
|
visit(node_storage->partition_by);
|
|
visit(node_storage->primary_key);
|
|
visit(node_storage->order_by);
|
|
visit(node_storage->sample_by);
|
|
visit(node_storage->ttl_table);
|
|
return;
|
|
}
|
|
|
|
// Normalize only selected children. Avoid normalizing type clause because some type might
|
|
// have the same name as function, e.g. Date.
|
|
if (auto * node_decl = ast->as<ASTColumnDeclaration>())
|
|
{
|
|
visit(node_decl->default_expression.get());
|
|
visit(node_decl->ttl.get());
|
|
return;
|
|
}
|
|
|
|
if (auto * node_func = ast->as<ASTFunction>())
|
|
node_func->name = getAggregateFunctionCanonicalNameIfAny(getFunctionCanonicalNameIfAny(node_func->name));
|
|
|
|
for (auto & child : ast->children)
|
|
visit(child.get());
|
|
}
|
|
|
|
}
|