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
Fix a row index entry error in ORC writer issue (rapidsai#10989)
Issue rapidsai#10755
Fixes an issue in protobuf writer where the length on the row index entry was being written into a single byte. This would cause errors when the size is larger than 127.
The issue was uncovered when row group statistics were added. String statistics contain copies to min/max strings, so the size is unbounded.
This PR changes the protobuf writer to write the entry size as a generic uint, allowing larger entries.
Also fixed `start_row` in row group info array in the reader (unrelated).
Authors:
- Vukasin Milovanovic (https://github.com/vuule)
Approvers:
- Ram (Ramakrishna Prabhu) (https://github.com/rgsl888prabhu)
- David Wendt (https://github.com/davidwendt)
- GALI PREM SAGAR (https://github.com/galipremsagar)
URL: rapidsai#10989
0 commit comments