From c9bb43828b76e0bbd8fefe9c464a3ce884a3a72b Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Fri, 5 Mar 2021 16:39:40 -0500 Subject: [PATCH] ARROW-11881: [Rust][DataFusion] Fix clippy lint --- rust/datafusion/src/physical_plan/merge.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/datafusion/src/physical_plan/merge.rs b/rust/datafusion/src/physical_plan/merge.rs index 51541b6c5649..0bfd11bdaa5e 100644 --- a/rust/datafusion/src/physical_plan/merge.rs +++ b/rust/datafusion/src/physical_plan/merge.rs @@ -121,7 +121,7 @@ impl ExecutionPlan for MergeExec { // spawn independent tasks whose resulting streams (of batches) // are sent to the channel for consumption. - for part_i in (0..input_partitions) { + for part_i in 0..input_partitions { let input = self.input.clone(); let mut sender = sender.clone(); tokio::spawn(async move {