Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
viirya committed Aug 20, 2024
1 parent 61249fd commit 73068ee
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 as u64),
buffered_indices.iter().map(|&index| index),
);

if let Some(record_batch) = produce_buffered_null_batch(
Expand Down

0 comments on commit 73068ee

Please sign in to comment.