diff options
author | AlexSm <alex@ydb.tech> | 2023-12-27 23:31:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-27 23:31:58 +0100 |
commit | d67bfb4b4b7549081543e87a31bc6cb5c46ac973 (patch) | |
tree | 8674f2f1570877cb653e7ddcff37ba00288de15a /contrib/clickhouse/src/Interpreters/InterpreterCreateIndexQuery.cpp | |
parent | 1f6bef05ed441c3aa2d565ac792b26cded704ac7 (diff) | |
download | ydb-d67bfb4b4b7549081543e87a31bc6cb5c46ac973.tar.gz |
Import libs 4 (#758)
Diffstat (limited to 'contrib/clickhouse/src/Interpreters/InterpreterCreateIndexQuery.cpp')
-rw-r--r-- | contrib/clickhouse/src/Interpreters/InterpreterCreateIndexQuery.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/clickhouse/src/Interpreters/InterpreterCreateIndexQuery.cpp b/contrib/clickhouse/src/Interpreters/InterpreterCreateIndexQuery.cpp index 3b47a002e5..ed29c82a0f 100644 --- a/contrib/clickhouse/src/Interpreters/InterpreterCreateIndexQuery.cpp +++ b/contrib/clickhouse/src/Interpreters/InterpreterCreateIndexQuery.cpp @@ -4,6 +4,7 @@ #include <Databases/DatabaseReplicated.h> #include <Interpreters/Context.h> #include <Interpreters/executeDDLQueryOnCluster.h> +#include <Interpreters/FunctionNameNormalizer.h> #include <Parsers/ASTCreateIndexQuery.h> #include <Parsers/ASTIdentifier.h> #include <Parsers/ASTIndexDeclaration.h> @@ -22,6 +23,7 @@ namespace ErrorCodes BlockIO InterpreterCreateIndexQuery::execute() { + FunctionNameNormalizer().visit(query_ptr.get()); auto current_context = getContext(); const auto & create_index = query_ptr->as<ASTCreateIndexQuery &>(); |