Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix ORC reader issue with reading empty string columns (#7656)
There was a [condition in reader where if the data size is zero](https://github.com/rapidsai/cudf/blob/8773a40f4c8ce63f56ed6eb67b4eaf959106939f/cpp/src/io/orc/reader_impl.cu#L538), 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 Authors: - Ram (Ramakrishna Prabhu) (@rgsl888prabhu) Approvers: - Devavret Makkar (@devavret) - Vukasin Milovanovic (@vuule) - Keith Kraus (@kkraus14) URL: #7656
- Loading branch information