Skip to content

Commit

Permalink
fix clippy again
Browse files Browse the repository at this point in the history
  • Loading branch information
viirya committed Aug 20, 2024
1 parent 73068ee commit 8854571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/joins/sort_merge_join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1239,7 +1239,7 @@ impl SMJStream {
.collect::<Vec<_>>();

let buffered_indices = UInt64Array::from_iter_values(
buffered_indices.iter().map(|&index| index),
buffered_indices.iter().copied(),
);

if let Some(record_batch) = produce_buffered_null_batch(
Expand Down

0 comments on commit 8854571

Please sign in to comment.