fix special build another try

This commit is contained in:
Sergei Semin 2021-09-12 09:12:14 +03:00
parent f74350c148
commit 4bf2d64427

View File

@ -181,7 +181,7 @@ Names getPrimaryKeyColumns(const ASTExpressionList * primary_key)
Names result;
const auto & children = primary_key->children;
for (auto child : children)
for (const auto & child : children)
{
const ASTIdentifier * key_part = child->as<const ASTIdentifier>();
result.push_back(key_part->name());