lgbo-ustc opened a new issue, #8974:
URL: https://github.com/apache/incubator-gluten/issues/8974
### Description
For following query
```sql
select t1.*, t2.* from
t1
left join(
select id from t2 group by id
) as t2
on t1.id = t2.id
```
`left any join` in `CH` can achieve the same result.
```sql
select t1.*, t2.* from
t1 left any join(
select id from t
) as t2
on t1.id = t2.id
```
`any join` is more efficient, it only builds one hash table.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]