cloud-fan edited a comment on pull request #28717:
URL: https://github.com/apache/spark/pull/28717#issuecomment-638407200


   @brkyvz I tried triple self-join but can't find a buggy case:
   ```
   sql("select * from t t1 join t t2 join t t3 where t1.a = t3.a").show
   
   sql("select * from t t1 join t t2 on t1.b = t2.a join t t3 on t1.a = 
t3.a").show
   
   sql("select * from t t1 join t t2 on t1.b = t2.a join t t3 on t2.a = 
t3.a").show
   ```
   
   Please let me know if you see some broken join queries.


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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

Reply via email to