[multistage] Handle Integer.MIN_VALUE in FieldSelectionKeySelector#10596
Merged
Jackie-Jiang merged 1 commit intoapache:masterfrom Apr 13, 2023
Merged
[multistage] Handle Integer.MIN_VALUE in FieldSelectionKeySelector#10596Jackie-Jiang merged 1 commit intoapache:masterfrom
Jackie-Jiang merged 1 commit intoapache:masterfrom
Conversation
Codecov Report
@@ Coverage Diff @@
## master #10596 +/- ##
=============================================
- Coverage 69.04% 27.75% -41.29%
+ Complexity 6496 58 -6438
=============================================
Files 2106 2090 -16
Lines 113004 112572 -432
Branches 17026 16971 -55
=============================================
- Hits 78021 31243 -46778
- Misses 29495 78213 +48718
+ Partials 5488 3116 -2372
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 1550 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
yupeng9
approved these changes
Apr 12, 2023
Contributor
yupeng9
left a comment
There was a problem hiding this comment.
LG. can you check test failure?
Jackie-Jiang
approved these changes
Apr 13, 2023
Contributor
Author
Thanks. Filed a separate issue for it: #10597 It might be a flaky test. The code change in this is unrelated since |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Saw this in our production where one of the inputs hashes to
Integer.MIN_VALUE.Math.absreturns negation of the input number if the input number is negative. So forInteger.MIN_VALUE, it returns the same value. This is also documented in the docs forMath.abs.In other places like
MurmurPartitionFunction,HashCodePartitionFunction, etc. we seem to be already doing this so looks like it's a known thing.