You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We recently ran into rapidsai/cudf#6763 which triggers when trying to write booleans with nulls. We test writing booleans to ORC in our integration tests, but those tests did not trigger the issue. They missed it because they only write a single stripe to each file, because so few rows are written. If the test had written enough rows to trigger more than one stripe, the bug would have been caught.
The text was updated successfully, but these errors were encountered:
Based on the explanation in the comment here rapidsai/cudf#6763 (comment) and my experiment, generating multiple row groups can reproduce this error #11736 instead of multiple stripes.
We recently ran into rapidsai/cudf#6763 which triggers when trying to write booleans with nulls. We test writing booleans to ORC in our integration tests, but those tests did not trigger the issue. They missed it because they only write a single stripe to each file, because so few rows are written. If the test had written enough rows to trigger more than one stripe, the bug would have been caught.
The text was updated successfully, but these errors were encountered: