-
Notifications
You must be signed in to change notification settings - Fork 915
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
Remove the option to completely disable decimal128 columns in the ORC reader #10127
Remove the option to completely disable decimal128 columns in the ORC reader #10127
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-22.04 #10127 +/- ##
================================================
+ Coverage 10.37% 10.43% +0.05%
================================================
Files 119 119
Lines 20149 20590 +441
================================================
+ Hits 2091 2148 +57
- Misses 18058 18442 +384
Continue to review full report at Codecov.
|
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.
Seems like one API was missed, otherwise LGTM!
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.
🔥
rerun tests |
@gpucibot merge |
The option was put in place to prevent Python users of the read_orc API to read decimal columns as 128bit, since this type was not supported in Python at the time.
Now that decimal128 in supported in Python, this option can be removed.
The change in technically breaking, but it is very unlikely that anyone is using the API.