kylebarron commented on code in PR #7334:
URL: https://github.com/apache/arrow-rs/pull/7334#discussion_r2018936488


##########
parquet/src/file/metadata/reader.rs:
##########
@@ -638,6 +676,53 @@ impl ParquetMetaDataReader {
         }
     }
 
+    #[cfg(all(feature = "async", feature = "arrow"))]
+    async fn load_metadata_via_suffix<F: MetadataSuffixFetch>(
+        &self,
+        fetch: &mut F,
+        prefetch: usize,
+    ) -> Result<(ParquetMetaData, Option<(usize, Bytes)>)> {
+        let suffix = fetch.fetch_suffix(prefetch.max(FOOTER_SIZE)).await?;

Review Comment:
   Resolved in [`c2e2fd6` 
(#7334)](https://github.com/apache/arrow-rs/pull/7334/commits/c2e2fd64765784aaab11e798c3fe9ae98e90b59f)
 and [`e3cbcda` 
(#7334)](https://github.com/apache/arrow-rs/pull/7334/commits/e3cbcda5c02446213dbe47acb5764d0706d9c275)



-- 
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]

Reply via email to