From f1406ba20d2282135a6a828b75c038c188d7abef Mon Sep 17 00:00:00 2001 From: Eduard Karacharov Date: Thu, 9 Mar 2023 16:04:42 +0300 Subject: [PATCH] fixed hash_join tests after passing boolean by value --- datafusion/core/src/physical_plan/joins/hash_join.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datafusion/core/src/physical_plan/joins/hash_join.rs b/datafusion/core/src/physical_plan/joins/hash_join.rs index 03ac5050f1bc..0d2b897dd267 100644 --- a/datafusion/core/src/physical_plan/joins/hash_join.rs +++ b/datafusion/core/src/physical_plan/joins/hash_join.rs @@ -3144,7 +3144,7 @@ mod tests { None, &join_type, PartitionMode::Partitioned, - &false, + false, )?; let stream = join.execute(1, task_ctx)?;