-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
executor: fix incorrect results when there is an IndexLookUp under the inner side of an Apply #19496
Conversation
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.
LGTM
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.
LGTM
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.
LGTM
/merge |
/run-all-tests |
@qw4990 merge failed. |
/run-all-tests |
/run-integration-copr-test |
1 similar comment
/run-integration-copr-test |
/run-integration-common-test |
1 similar comment
/run-integration-common-test |
/merge |
/run-all-tests |
1 similar comment
/run-all-tests |
@qw4990 merge failed. |
/run-common-test |
1 similar comment
/run-common-test |
Signed-off-by: ti-srebot <[email protected]>
cherry pick to release-4.0 in PR #19508 |
…e inner side of an Apply (#19496) (#19508) * cherry pick #19496 to release-4.0 Signed-off-by: ti-srebot <[email protected]> * fix CI Co-authored-by: Yuanjia Zhang <[email protected]>
What problem does this PR solve?
Issue Number: close #19372
Problem Summary: executor: fix incorrect results when there is an IndexLookUp under the inner side of an Apply
What is changed and how it works?
When an
IndexLookUp
is under the inner side of anApply
, it may be invoked multiple times, but inIndexLookUp.Close()
, the fieldresultCurr
is not cleared up, so in the next round of invocation, some stale rows may be returned because of this logic.Check List
Tests
Release note