-
Notifications
You must be signed in to change notification settings - Fork 901
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 ORC reader issue with reading empty string columns #7656
Fix ORC reader issue with reading empty string columns #7656
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.
This PR does not show how hard it is to find a fix for an issue like this... great work!
Anyone who's worked on cuIO knows. The issue that took me a month had a 2 line fix. |
Ouch. Do you remember the PR # ? |
I misremember. It was #5473 but it was 16 days. It felt like an eternity though. |
@gpucibot merge |
There was a condition in reader where if the data size is zero, then stream pointer was not getting updated.
But in case of
["", ""]
where it is a valid data with 0 size, it was reading it as[null, null]
, so the condition has been removed which caused this issue.I have also added test cases to validate.
closes #7620