-
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: Use uint32 as element length in hash join v2 #57458
executor: Use uint32 as element length in hash join v2 #57458
Conversation
Hi @windtalker. Thanks for your PR. PRs from untrusted users cannot be marked as trusted with I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #57458 +/- ##
================================================
+ Coverage 72.8440% 73.4128% +0.5688%
================================================
Files 1672 1672
Lines 462716 462795 +79
================================================
+ Hits 337061 339751 +2690
+ Misses 104867 102317 -2550
+ Partials 20788 20727 -61
Flags with carried forward coverage won't be shown. Click here to find out more.
|
41ab7d7
to
c2346ae
Compare
Signed-off-by: xufei <[email protected]>
Signed-off-by: xufei <[email protected]>
Signed-off-by: xufei <[email protected]>
Signed-off-by: xufei <[email protected]>
Signed-off-by: xufei <[email protected]>
Signed-off-by: xufei <[email protected]>
c2346ae
to
cc4706e
Compare
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.
Other LGTM
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: wshwsh12, xzhangxian1008 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
[LGTM Timeline notifier]Timeline:
|
/hold |
/unhold |
What problem does this PR solve?
Issue Number: ref #53127
Problem Summary:
In TiDB the max row size is 128MB, so for a specific element in any table, it's size should not exceed
math.MaxUint32
, so this pr useuint32
as the element size in hash join v2What changed and how does it work?
Check List
Tests
Side effects
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.