-
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 data race in (*HashJoinExec).Close()
since fetchInnerAndBuildHashTable
is still running
#11639
Conversation
/run-all-tests |
Codecov Report
@@ Coverage Diff @@
## master #11639 +/- ##
================================================
- Coverage 81.4489% 81.4471% -0.0018%
================================================
Files 433 433
Lines 93240 93091 -149
================================================
- Hits 75943 75820 -123
+ Misses 11867 11846 -21
+ Partials 5430 5425 -5 |
/run-all-tests |
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.
Please add an UT for the bug-fixes. You can write a failpoint test.
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.
Please add an UT for the bug-fixes. You can write a failpoint test.
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
/run-all-tests |
What problem does this PR solve?
Fixes #11600, and fixes #11693
What is changed and how it works?
It's a bug introduced by #11571
Check List
Tests
Code changes
Side effects
Related changes