-
Notifications
You must be signed in to change notification settings - Fork 608
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ir): avoid deduplicating filters based solely on their name (#9476)
This PR fixes an issue where we were using `unwrap_aliases` to deduplicate and enforce expressions by their name in `filter`s. That approach makes sense in the context of projections, but the name of predicate expressions in a `filter` is irrelevant. The solution was to continue to unwrap aliases but avoid deduplicating expressions based on their name, and do it solely on the hash value of expressions. Closes #9474.
- Loading branch information
Showing
2 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters