-
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.
39125: exec: support ON expression with INNER merge and hash joins r=yuzefovich a=yuzefovich **exec: support ON expresion with INNER merge join** Supporting ON expression is simple in case of an inner merge join since we simply need to filter out the rows that don't satisfy the predicate. It is done as a selection operator after the merge joiner. **exec: add support for INNER hash joiner with ON expression** Similarly to merge joiner case, it is very simple to add support for ON expression in case of inner hash joiner by just planning a filter on top. Additionally, this commit introduces a test of hash joiner operator against the processor. Addresses: #38018. Release note: None Co-authored-by: Yahor Yuzefovich <yahor@cockroachlabs.com>
- Loading branch information
Showing
2 changed files
with
277 additions
and
88 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
Oops, something went wrong.