Changes between Version 1 and Version 2 of Ticket #35594, comment 2


Ignore:
Timestamp:
Jul 11, 2024, 11:17:02 AM (2 months ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35594, comment 2

    v1 v2  
    33This was missed in #34701. Elevating to release blocker as this is a bug in a newly released feature.
    44
    5 I guess solution would be that when `nulls_distinct=False` all expressions checks should be turned into `OR (rhs IS NULL AND lhs IS NULL)`
     5I guess solution would be that when `nulls_distinct=False` all expressions checks should be turned into `OR (rhs IS NULL AND lhs IS NULL)` due to [https://modern-sql.com/feature/is-distinct-from the lack of general support] for the `IS DISTINCT FROM` operator.
    66
    77{{{#!sql
Back to Top