From c36560c4634225799893f38022962cf2a234c015 Mon Sep 17 00:00:00 2001 From: Liang-Chi Hsieh Date: Mon, 6 May 2024 22:46:31 -0700 Subject: [PATCH] Fix clippy --- crates/iceberg/src/arrow/reader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/iceberg/src/arrow/reader.rs b/crates/iceberg/src/arrow/reader.rs index facf8688f..24c40eb01 100644 --- a/crates/iceberg/src/arrow/reader.rs +++ b/crates/iceberg/src/arrow/reader.rs @@ -240,7 +240,7 @@ impl ArrowReader { // The converter that converts `BoundPredicates` to `ArrowPredicates` let mut converter = PredicateConverter { - parquet_schema: &parquet_schema, + parquet_schema, column_map: &field_id_map, column_indices: &column_indices, };