kylebarron commented on code in PR #7371:
URL: https://github.com/apache/arrow-rs/pull/7371#discussion_r2031633529
##########
parquet/src/arrow/async_reader/metadata.rs:
##########
@@ -82,7 +83,7 @@ pub trait MetadataSuffixFetch: MetadataFetch {
///
/// Note the returned type is a boxed future, often created by
/// [FutureExt::boxed]. See the trait documentation for an example
- fn fetch_suffix(&mut self, suffix: usize) -> BoxFuture<'_, Result<Bytes>>;
+ fn fetch_suffix(&mut self, suffix: u64) -> BoxFuture<'_, Result<Bytes>>;
Review Comment:
I switched this back to `usize` as I agree we'll never be making suffix
requests for larger than 2^32 bytes, and we should minimize the diff here for
easiest adoption.
--
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]