-
Notifications
You must be signed in to change notification settings - Fork 917
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
[REVIEW] Adding decimal writing support to parquet #7017
[REVIEW] Adding decimal writing support to parquet #7017
Conversation
…o parquet, the user must pass in a vector of uint8's that indicate the precision of the columns.
Codecov Report
@@ Coverage Diff @@
## branch-0.18 #7017 +/- ##
===============================================
+ Coverage 82.02% 82.11% +0.08%
===============================================
Files 96 97 +1
Lines 16381 16477 +96
===============================================
+ Hits 13437 13530 +93
- Misses 2944 2947 +3
Continue to review full report at Codecov.
|
rerun 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.
Minor suggestions/questions.
Co-authored-by: Vukasin Milovanovic <[email protected]>
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.
Just one small suggestion
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.
Just one comment on naming.
Since cudf doesn't support precision, the precision must be passed in as a write option. This is handled as a vector of uint8's that indicates the precision of each flattened column in order to support nested types.
Partially closes #6474