liukun4515 commented on code in PR #4377:
URL: https://github.com/apache/arrow-datafusion/pull/4377#discussion_r1035549338


##########
datafusion/core/src/physical_plan/joins/hash_join.rs:
##########
@@ -2306,23 +2162,36 @@ mod tests {
         Ok(())
     }
 
+    fn build_semi_anti_left_table() -> Arc<dyn ExecutionPlan> {
+        // just two line match
+        // b1 = 10
+        build_table(
+            ("a1", &vec![1, 3, 5, 7, 9, 11, 13]),
+            ("b1", &vec![1, 3, 5, 7, 8, 8, 10]),
+            ("c1", &vec![10, 30, 50, 70, 90, 110, 130]),
+        )
+    }
+
+    fn build_semi_anti_right_table() -> Arc<dyn ExecutionPlan> {
+        // just two line match
+        // b2 = 10
+        build_table(
+            ("a2", &vec![2, 4, 6, 8, 10, 12]),
+            ("b2", &vec![2, 4, 6, 8, 10, 10]),

Review Comment:
   cc @alamb 
   The commit 
https://github.com/apache/arrow-datafusion/pull/4377/commits/a24ba09a515c6f75e6146fa45780f15769de735d
 for change the order of the `b2 and a2`



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to