You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by GitBox <gi...@apache.org> on 2020/06/03 19:18:13 UTC

[GitHub] [spark] cloud-fan edited a comment on pull request #28717: [SPARK-29947][SQL][followup] ResolveRelations should return relations with fresh attribute IDs

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:
users@infra.apache.org



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