jackwener commented on issue #5949:
URL:
https://github.com/apache/arrow-datafusion/issues/5949#issuecomment-1502636600
It seems that this plan is unreasonable.
```
select(
column("a") + column("b"),
column("a") - column("b"),
)
will get two col (a + b) (a - b)
filter can't find col(a)
```
why this PR would have introduced this change in behavior?
In my opinion, origin `type coercion` is in `optimizer` and `optimizer` can
skip failed rule. So the problem is covered up.
After move it into `Analyzer` which don't skip failed rule, so this problem
expose.
--
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]