Skip to content

Commit b4c7ef7

Browse files
authored
Minor: Fix compiler warning when compiling datafusion-cli (#17205)
* supporess compiler warning * fix another clippy warning
1 parent 8103396 commit b4c7ef7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/datasource-parquet/src/reader.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ impl AsyncFileReader for CachedParquetFileReader {
244244

245245
fn get_metadata<'a>(
246246
&'a mut self,
247-
options: Option<&'a ArrowReaderOptions>,
247+
#[allow(unused_variables)] options: Option<&'a ArrowReaderOptions>,
248248
) -> BoxFuture<'a, parquet::errors::Result<Arc<ParquetMetaData>>> {
249249
let file_meta = self.file_meta.clone();
250250
let metadata_cache = Arc::clone(&self.metadata_cache);

0 commit comments

Comments
 (0)