-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Remove support for evaluating sub-optimial filters in joins
Summary: This enables the hash join operator to throw an error when a filter is applied exclusively to columns from one side of the join. This validation ensures the detection of suboptimal plans, where filters are evaluated at the join operator instead of being pushed to the upstream scan node of the respective join side for optimization. Also adds a private API to ensure an internal state variable which is a buffer is unique before any mutations are applied to it. Differential Revision: D69085909
- Loading branch information
1 parent
2bb7aab
commit e5bc251
Showing
3 changed files
with
54 additions
and
6 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
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