andygrove commented on issue #17322:
URL: https://github.com/apache/datafusion/issues/17322#issuecomment-3221543369
For reference, this is the behavior in Postgres:
```
postgres=# select coalesce(1, 1/0);
coalesce
----------
1
(1 row)
postgres=# select coalesce(1/0, 1);
ERROR: division by zero
```
This differs from DataFusion's behavior:
```
DataFusion CLI v48.0.0
> select coalesce(1, 1/0);
Arrow error: Divide by zero error
```
--
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]