-
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
Fix writing of ORC files with empty rowgroups #13466
Fix writing of ORC files with empty rowgroups #13466
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.
LGTM.
} | ||
if (t == 0) { streams[ss.column_id][group].data_ptrs[cid] = dst_ptr; } |
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.
Ah, I see. Outside the length check.
Thank you @vuule for jumping in and solving this on such short notice. 🙏 🙏 |
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 fixed the original Spark query issues.
Description
Issue #13460
Fixes the bug in
gpuCompactOrcDataStreams
where stream pointer would not get updated for empty row groups.Checklist