We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 842aa89 commit 60d37acCopy full SHA for 60d37ac
datafusion/datasource-parquet/src/file_format.rs
@@ -958,8 +958,7 @@ pub async fn fetch_parquet_metadata(
958
let file_size = meta.size;
959
let fetch = ObjectStoreFetch::new(store, meta);
960
961
- #[allow(unused_mut)]
962
- let mut reader = ParquetMetaDataReader::new().with_prefetch_hint(size_hint);
+ let reader = ParquetMetaDataReader::new().with_prefetch_hint(size_hint);
963
964
#[cfg(feature = "parquet_encryption")]
965
let reader = reader.with_decryption_properties(decryption_properties);
0 commit comments