rluvaton commented on PR #18152:
URL: https://github.com/apache/datafusion/pull/18152#issuecomment-3448597124
Couple of questions:
1. Your solution **assume** that case expression evaluation are cheaper than
copy record batch, right?.
I think this assumption should be documented in the code.
2. Given this example:
```
CASE WHEN a IS NULL THEN "null"
WHEN a > 1 THEN "yes"
END
```
in case `a IS NULL` filtered 10% for example, do you **evaluate** `a > 1`
for the remaining 90% or 100%?
--
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]