Update src/Analyzer/Utils.cpp

This commit is contained in:
Dmitry Novik 2023-10-25 17:05:04 +02:00 committed by GitHub
parent 394edd57d5
commit dd7f81adeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -602,7 +602,7 @@ void replaceColumns(QueryTreeNodePtr & node,
void rerunFunctionResolve(FunctionNode * function_node, ContextPtr context)
{
if(!function_node->isResolved())
if (!function_node->isResolved())
throw Exception(ErrorCodes::LOGICAL_ERROR, "Trying to rerun resolve of unresolved function '{}'", function_node->getFunctionName());
if (function_node->isOrdinaryFunction())