-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Store a list of input WhereFilterSpecs in the WhereConstraintNode
Up until now we've been merging sets of WhereFilterSpec instances into a single instance and then storing that in the WhereConstraintNode. This made sense for rendering, but when trying to do predicate pushdown having the specs all merged together limits the space of filter pushdown opporunities. In order to allow for the same breadth of predicate pushdown opportunities we have at dataflow plan build time we keep the specs separate, and encapsulate the merging of these specs into the WhereConstraintNode itself.
- Loading branch information
Showing
5 changed files
with
43 additions
and
38 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
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