This commit is contained in:
vdimir 2024-03-21 14:03:43 +00:00
parent 6d84ccd9f1
commit 46ab53ef79
No known key found for this signature in database
GPG Key ID: 6EE4CE2BEDC51862

View File

@ -3569,7 +3569,6 @@ QueryTreeNodePtr QueryAnalyzer::tryResolveIdentifierFromJoin(const IdentifierLoo
/// Set the same projection name for new nullable node
if (projection_name_it != node_to_projection_name.end())
{
node_to_projection_name.erase(projection_name_it);
node_to_projection_name.emplace(resolved_identifier, projection_name_it->second);
}
}
@ -4692,7 +4691,6 @@ ProjectionNames QueryAnalyzer::resolveMatcher(QueryTreeNodePtr & matcher_node, I
/// Set the same projection name for new nullable node
if (projection_name_it != node_to_projection_name.end())
{
node_to_projection_name.erase(projection_name_it);
node_to_projection_name.emplace(node, projection_name_it->second);
}
}