etseidl commented on code in PR #8111: URL: https://github.com/apache/arrow-rs/pull/8111#discussion_r2274367650
########## parquet/src/file/metadata/reader.rs: ########## @@ -1040,6 +1055,107 @@ impl ParquetMetaDataReader { Ok(ParquetMetaData::new(file_metadata, row_groups)) } + /// create meta data from thrift encoded bytes + pub fn decode_file_metadata(buf: &[u8]) -> Result<ParquetMetaData> { + let mut prot = ThriftCompactInputProtocol::new(buf); + + // components of the FileMetaData Review Comment: I've added this for benchmarking purposes...I think eventually it would simply replace the existing `decode_metadata`. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org