Github user chenghao-intel commented on the pull request:
https://github.com/apache/spark/pull/4812#issuecomment-76499559
So syntactically, what's the difference between
```
select C from R1 left semi join R2 on R1.X = R2.Y
```
and
```
select C
from R1 left semi join
(select B, R2.Y as sq1_col0 from R2) sq1
on R1.X = sq1.sq1_col0
```
We never select any values from `R2` right?
---
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 [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]