lgbo-ustc opened a new issue, #10961:
URL: https://github.com/apache/incubator-gluten/issues/10961
### Backend
CH (ClickHouse)
### Bug description
[Expected behavior] and [actual behavior].
For following query
```sql
select a,b from (
select id as a from range(1)
) as t1
full outer join (
select * from ( select id as b from range(2) ) t2 where b > 10
) as t3
```
`vanilla`'s result is
```
0, null
```
but `gluten`'s result is empty.
This is a conner case, the `full join` is tranformed into `cross join`,
`cross join` returns empty if any table is empty.
### Gluten version
_No response_
### Spark version
None
### Spark configurations
_No response_
### System information
_No response_
### Relevant logs
```bash
```
--
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]