comphead commented on issue #10100:
URL:
https://github.com/apache/arrow-datafusion/issues/10100#issuecomment-2062762876
Narrowed down the problem to query
```
with
t as (select 1 a, 1 b),
t1 as (select 1 a, 1 b)
select * from t, t1 where t.a = t1.a and exists (select * from t1 t2 where
t2.a = t1.a and t2.b <> t1.b);
```
--
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]