-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Support BigDecimal raw value forward index; Support BigDecimal in many transforms and operators #8622
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #8622 +/- ##
=============================================
- Coverage 70.47% 25.55% -44.93%
=============================================
Files 1703 1694 -9
Lines 89569 89707 +138
Branches 13564 13625 +61
=============================================
- Hits 63123 22923 -40200
- Misses 21990 64558 +42568
+ Partials 4456 2226 -2230
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
Jackie-Jiang
left a comment
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.
Mostly good, awesome work!
...a/org/apache/pinot/core/operator/transform/function/SelectTupleElementTransformFunction.java
Outdated
Show resolved
Hide resolved
...java/org/apache/pinot/core/operator/transform/function/SingleParamMathTransformFunction.java
Outdated
Show resolved
Hide resolved
...c/main/java/org/apache/pinot/core/operator/transform/function/DivisionTransformFunction.java
Outdated
Show resolved
Hide resolved
...ain/java/org/apache/pinot/core/operator/transform/function/SubtractionTransformFunction.java
Outdated
Show resolved
Hide resolved
|
|
||
| public void putBigDecimal(BigDecimal value) { | ||
| _chunkBuffer.put(BigDecimalUtils.serialize(value)); | ||
| _chunkDataOffset += BigDecimalUtils.byteSize(value); |
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.
Put the serialized bytes length here instead of re-calculating the byte size again
feature,release-notes