This is an automated email from the ASF dual-hosted git repository.
ytyou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new b4c7ef78fb Minor: Fix compiler warning when compiling `datafusion-cli`
(#17205)
b4c7ef78fb is described below
commit b4c7ef78fbc31a26f442235645fb06e7c631c374
Author: Yongting You <[email protected]>
AuthorDate: Fri Aug 15 17:51:07 2025 +0800
Minor: Fix compiler warning when compiling `datafusion-cli` (#17205)
* supporess compiler warning
* fix another clippy warning
---
datafusion/datasource-parquet/src/reader.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/datafusion/datasource-parquet/src/reader.rs
b/datafusion/datasource-parquet/src/reader.rs
index eab801e506..cfb3c0c825 100644
--- a/datafusion/datasource-parquet/src/reader.rs
+++ b/datafusion/datasource-parquet/src/reader.rs
@@ -244,7 +244,7 @@ impl AsyncFileReader for CachedParquetFileReader {
fn get_metadata<'a>(
&'a mut self,
- options: Option<&'a ArrowReaderOptions>,
+ #[allow(unused_variables)] options: Option<&'a ArrowReaderOptions>,
) -> BoxFuture<'a, parquet::errors::Result<Arc<ParquetMetaData>>> {
let file_meta = self.file_meta.clone();
let metadata_cache = Arc::clone(&self.metadata_cache);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]