-
Notifications
You must be signed in to change notification settings - Fork 1.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
[Fix][MongoDB] The Long type cannot handle string values in scientific notation. #8775 #8783
base: dev
Are you sure you want to change the base?
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.
author lee <[email protected]> 1740121208 +0800 committer lee <[email protected]> 1741076125 +0800 parent a3a7b49 author lee <[email protected]> 1740121208 +0800 committer lee <[email protected]> 1741076105 +0800 [Fix][MongoDB] The Long type cannot handle string values in scientific notation. (apache#8783)
Okay, I've submitted it. |
@Hisoka-X Any other questions here? |
Method method = SamplingSplitStrategy.class.getDeclaredMethod("getDocumentNumAndAvgSize"); | ||
method.setAccessible(true); | ||
ImmutablePair<Long, Long> result = (ImmutablePair<Long, Long>) method.invoke(strategy); |
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.
Try not to use reflection to test your code. Let's set getDocumentNumAndAvgSize
scope to default and add @VisibleForTesting
annotation. Then you can invoke it in here.
Purpose of this pull request
The purpose is to fix bug: 8775
Does this PR introduce any user-facing change?
How was this patch tested?
Check list
New License Guide
release-note
.