-
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
Increase max RLE stream size estimate to avoid potential overflows #9568
Increase max RLE stream size estimate to avoid potential overflows #9568
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-21.12 #9568 +/- ##
================================================
- Coverage 10.79% 10.65% -0.14%
================================================
Files 116 117 +1
Lines 18869 19331 +462
================================================
+ Hits 2036 2059 +23
- Misses 16833 17272 +439
Continue to review full report at Codecov.
|
Is it possible to add a small test case ? |
Working on it, it's a bit tricky to avoid all benefits of RLE encoding :) |
…bug-orc-stream-overlap
@rgsl888prabhu Update on testing: |
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.
Python looks good. 👍
@gpucibot merge |
rerun tests |
looks like branch checker is stuck :\ |
rerun tests |
rerun tests |
Switching the base branch to |
Issue #9478
Increase the max RLE stream size to account for the fact that varint encoding encodes 7 bits pre byte.
Remove unused flush parameter in
integerRLE
kernel.