alamb commented on issue #3589:
URL: https://github.com/apache/arrow-rs/issues/3589#issuecomment-1401122793
Posgres agrees:
```sql
postgres=# Select nullif(null, null);
nullif
--------
(1 row)
postgres=# Select nullif(null, 1)
postgres-# ;
nullif
--------
(1 row)
postgres=# Select nullif(1, null);
nullif
--------
1
(1 row)
```
🤯
--
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]