-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
39464: exec: handle some mixed type comparison expressions r=rafiss a=rafiss This adds support for int-int comparisons and float-float comparisons (of different sizes), as well as various string comparisons. This is necessary to support TPC-H queries 7, 16, 19, and 21 (though there are still other issues to address before those are fully supported). There is some refactoring here so that as a next step we can support comparisons between different types entirely (e.g. int-decimal). touches #39189 Release note: None 39472: opt: prune RHS of a semi/anti join r=ridwanmsharif a=ridwanmsharif Fixes #38704. This change adds a PruneSemiAntiJoinRightCols to prune columns in the RHS of a semi/anti join. Alternatively, we could just tag the PruneJoinRightCols rule as higher priority to achieve the same effect (previously that rule was never triggered because the `EliminateProjects` rule would fire and remove the projections after `PruneJoinLeftCols` rule is applied). I prefer this rule because it avoids requiring an ordering of transformations. Release note: None Co-authored-by: Rafi Shamim <[email protected]> Co-authored-by: Ridwan Sharif <[email protected]>
- Loading branch information
Showing
31 changed files
with
757 additions
and
649 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
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
Oops, something went wrong.