melgenek opened a new pull request, #5158: URL: https://github.com/apache/arrow-datafusion/pull/5158
# Which issue does this PR close? Closes #4335. # Rationale for this change These queries should produce a value instead of an error ``` ❯ select null and null; ❯ select null or null; ``` # What changes are included in this PR? Null comparison coercion and tests. I made the null logical comparison produce booleans. This is the Postgres does it, and DataFusion seems to be compatible with Postgres. # Are these changes tested? Sqllogictests and unit tests # Are there any user-facing changes? `null and null` and `null or null` would produce Boolean null value instead of an 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]
