-
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.
33536: distsqlrun: fix lookup join order preservation r=jordanlewis a=jordanlewis Fixes #33354. Previously, a lookup join with a left side that doesn't have an injective mapping into the right side would fail to preserve its input order, in violation of its contract. Now, the code is modified to use the order-preserving pathway that was designed for outer joins all the time, to prevent the issue. Release note (bug fix): lookup joins preserve their input order even if more than one row of the input corresponds to the same row of the lookup table. Co-authored-by: Jordan Lewis <[email protected]>
- Loading branch information
Showing
4 changed files
with
76 additions
and
54 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