This is an automated email from the ASF dual-hosted git repository. ytyou pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/datafusion.git
The following commit(s) were added to refs/heads/main by this push: new 630aa7b0c7 replace false with NullEqualsNothing (#16437) 630aa7b0c7 is described below commit 630aa7b0c7b44ea8e77f9e0d685bf79f2a3cd3bd Author: ding-young <lsyh...@snu.ac.kr> AuthorDate: Wed Jun 18 17:34:23 2025 +0900 replace false with NullEqualsNothing (#16437) --- datafusion/physical-plan/src/joins/hash_join.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datafusion/physical-plan/src/joins/hash_join.rs b/datafusion/physical-plan/src/joins/hash_join.rs index 8c4241be72..770399290d 100644 --- a/datafusion/physical-plan/src/joins/hash_join.rs +++ b/datafusion/physical-plan/src/joins/hash_join.rs @@ -3503,7 +3503,7 @@ mod tests { Arc::clone(&right), on.clone(), &JoinType::RightMark, - false, + NullEquality::NullEqualsNothing, task_ctx, ) .await?; @@ -3547,7 +3547,7 @@ mod tests { Arc::clone(&right), on.clone(), &JoinType::RightMark, - false, + NullEquality::NullEqualsNothing, task_ctx, ) .await?; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org For additional commands, e-mail: commits-h...@datafusion.apache.org