Github user viirya commented on the issue:

    https://github.com/apache/spark/pull/18652
  
    > Why equi-join is free from the issues?
    
    Assume the equi-join predicates are in the form like `t1.a = rand(t2.b) && 
t1.c = rand(t2.d)`. When we compare the equi-join keys `(t1.a, t1.c)` and 
`(rand(t2.b), rand(t2.d))`, we compare them all and won't skip `t1.c = 
rand(t2.d)` if `t1.a = rand(t2.b)` is false. That says we can pull out it to 
downstream project and don't need to worry changing the number of calls.
    
    
    
    



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to