Skip to content

Commit

Permalink
mark vars as unused
Browse files Browse the repository at this point in the history
  • Loading branch information
Boruch Chalk committed Jul 4, 2024
1 parent c5ea41b commit 55e3623
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/polars-pipe/src/executors/sources/parquet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ impl ParquetSource {
index: usize,
n_rows: usize,
) -> PolarsResult<BatchedParquetReader> {
let metadata = self.metadata.clone();
let predicate = self.predicate.clone();
let cloud_options = self.cloud_options.clone();
let (path, options, file_options, projection, chunk_size, hive_partitions) =
Expand Down Expand Up @@ -187,7 +188,7 @@ impl ParquetSource {
let predicate = self.predicate.clone();
let metadata = self.metadata.clone();
let cloud_options = self.cloud_options.clone();
let (path, options, file_options, projection, chunk_size, hive_partitions) =
let (path, options, _file_options, projection, _chunk_size, hive_partitions) =
self.prepare_init_reader(index)?;

let mut reader = {
Expand Down

0 comments on commit 55e3623

Please sign in to comment.