-
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: ignore overflow error when construct inner key #10244
Conversation
/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
/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
Codecov Report
@@ Coverage Diff @@
## master #10244 +/- ##
===============================================
+ Coverage 77.8326% 77.8447% +0.012%
===============================================
Files 410 410
Lines 85017 84991 -26
===============================================
- Hits 66171 66161 -10
+ Misses 13902 13891 -11
+ Partials 4944 4939 -5 |
1 similar comment
Codecov Report
@@ Coverage Diff @@
## master #10244 +/- ##
===============================================
+ Coverage 77.8326% 77.8447% +0.012%
===============================================
Files 410 410
Lines 85017 84991 -26
===============================================
- Hits 66171 66161 -10
+ Misses 13902 13891 -11
+ Partials 4944 4939 -5 |
What problem does this PR solve?
When the outer join key of index join is not the same type as inner side, we may meet overflows error when constructing the inner join key, and it may raise errors to the client.
What is changed and how it works?
Ignore the overflow error when constructing the inner join key.
Check List
Tests
Code changes
Side effects
Related changes