loneylee opened a new issue, #7596:
URL: https://github.com/apache/incubator-gluten/issues/7596
### Backend
CH (ClickHouse)
### Bug description
```
SELECT
l_orderkey,
count(*) cnt
FROM lineitem inner join
(
select * from (
select count(*) cct,o_orderkey from orders group by o_orderkey)
where cct > 10000
)
-- on l_orderkey = o_orderkey
GROUP BY
l_orderkey
ORDER BY
l_orderkey
LIMIT 10;
```
When buildside is empty, will accured.
### Spark version
None
### Spark configurations
_No response_
### System information
_No response_
### Relevant logs
_No response_
--
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]