Skip to content
Prev Previous commit
Next Next commit
make clippy happy
  • Loading branch information
XiangpengHao committed Jul 21, 2024
commit 1340a636df848bd18ef12cbbe48349e86876ebd2
4 changes: 2 additions & 2 deletions datafusion/physical-plan/src/coalesce_batches.rs
Original file line number Diff line number Diff line change
Expand Up @@ -244,10 +244,10 @@ impl CoalesceBatchesStream {

Arc::new(gc_string)
} else {
c.clone()
Arc::clone(c)
}
} else {
c.clone()
Arc::clone(c)
}
})
.collect();
Expand Down