Fix clang tidy

This commit is contained in:
kssenii 2021-05-16 18:18:11 +00:00
parent d44f1680da
commit 807684812e

View File

@ -214,7 +214,7 @@ static bool moduloToModuloLegacyRecursive(ASTPtr node_expr)
if (function_expr->arguments)
{
auto children = function_expr->arguments->children;
for (auto child : children)
for (const auto & child : children)
modulo_in_partition_key |= moduloToModuloLegacyRecursive(child);
}
}