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
Is your feature request related to a problem or challenge? Please describe what you are trying to do. #6431 adds a new API for obtaining Parquet metadata. To reduce code duplication and confusion, older APIs should be deprecated and eventually removed. Uses of these older APIs within the parquet crate should be converted to the new API.
This issue will track progress of conversion to the new ParquetMetaDataReader API.
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
#6431 adds a new API for obtaining Parquet metadata. To reduce code duplication and confusion, older APIs should be deprecated and eventually removed. Uses of these older APIs within the parquet crate should be converted to the new API.
This issue will track progress of conversion to the new
ParquetMetaDataReader
API.Non breaking changes
parquet/src/file/footer.rs
(parse_metadata
,decode_metadata
,decode_footer
) Deprecate methods from footer.rs in favor ofParquetMetaDataReader
#6451MetadataLoader
DeprecateMetadataLoader
#6474ParquetMetadaReader
#6450Breaking changes
ParquetError
to signal need for more data AddParquetError::NeedMoreData
markParquetError
asnon_exhaustive
#6630None
(rather than empty vectors) if page indexes are not present in the file ReturnNone
when Parquet page indexes are not present in file #6639The text was updated successfully, but these errors were encountered: