etseidl opened a new pull request, #10653: URL: https://github.com/apache/arrow-rs/pull/10653
# Which issue does this PR close? - Closes #8818. # Rationale for this change See issue, but in short the page indexes should allow for missing column and page indexes in a more natural way. # What changes are included in this PR? The major change is converting `ParquetOffsetIndex` from `Vec<Vec<OffsetIndexMetaData>>` to `Vec<Vec<Option<OffsetIndexMetaData>>>` and `ParquetColumnIndex` from `Vec<Vec<ColumnIndexMetaData>>` to `Vec<Vec<Option<ColumnIndexMetaData>>>`. Then needed changes to tests and places where these indexes are used. # Are these changes tested? Should be covered by existing tests # Are there any user-facing changes? Yes, the page indexes are public. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
