Fix style check

This commit is contained in:
Igor Nikonov 2024-11-11 11:54:04 +00:00
parent 9baa5911f9
commit 39e01d47b1

View File

@ -227,7 +227,7 @@ const QueryNode * findQueryForParallelReplicas(
const auto & children = next_node_to_check->children;
auto * step = next_node_to_check->step.get();
LOG_DEBUG(getLogger(__PRETTY_FUNCTION__), "Step {} childrens={}", step->getName(), children.size());
LOG_DEBUG(getLogger(__PRETTY_FUNCTION__), "Step {} children={}", step->getName(), children.size());
if (children.empty())
{
@ -347,7 +347,7 @@ const QueryNode * findQueryForParallelReplicas(const QueryTreeNodePtr & query_tr
}
if (res)
LOG_DEBUG(getLogger(__PRETTY_FUNCTION__), "Choosen query: {}", res->dumpTree());
LOG_DEBUG(getLogger(__PRETTY_FUNCTION__), "Chosen query: {}", res->dumpTree());
return res;
}