-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Fix a null bit set in left index lookup join #12226
Conversation
This pull request was exported from Phabricator. Differential Revision: D68941198 |
✅ Deploy Preview for meta-velox canceled.
|
velox/exec/IndexLookupJoin.cpp
Outdated
@@ -453,7 +453,7 @@ RowVectorPtr IndexLookupJoin::produceOutputForLeftJoin() { | |||
bits::fillBits( | |||
rawLookupOutputNulls_, | |||
numOutputRows, | |||
numOutputMissedInputRows, | |||
nnumOutputRows + numOutputMissedInputRows, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo?
nnumOutputRows + numOutputMissedInputRows, | |
numOutputRows + numOutputMissedInputRows, |
…12226) Summary: Fix null bit setting in left index lookup join as the bits fill take [start, end) but not {start, length}. Found in Meta internal tests. Reviewed By: zacw7 Differential Revision: D68941198
b796182
to
cf359a3
Compare
…12226) Summary: Fix null bit setting in left index lookup join as the bits fill take [start, end) but not {start, length}. Found in Meta internal tests. Reviewed By: zacw7 Differential Revision: D68941198
cf359a3
to
4aaae1b
Compare
This pull request was exported from Phabricator. Differential Revision: D68941198 |
1 similar comment
This pull request was exported from Phabricator. Differential Revision: D68941198 |
This pull request has been merged in b127d51. |
…12226) Summary: Pull Request resolved: facebookincubator#12226 Fix null bit setting in left index lookup join as the bits fill take [start, end) but not {start, length}. Found in Meta internal tests. Reviewed By: zacw7 Differential Revision: D68941198 fbshipit-source-id: 5f124394f6c3b0a9e370ca413ebdc58a509d67c3
Summary:
Fix null bit setting in left index lookup join as the bits fill take [start, end) but not {start, length}.
Found in Meta internal tests.
Differential Revision: D68941198