Closed dargmuesli closed 1 year ago
NULL is always not inequal to anything. So instead of != or <> we need to check if IS DISTINCT FROM.
NULL
!=
<>
IS DISTINCT FROM
:tada: This PR is included in version 1.17.3 :tada:
The release is available on GitHub release
Your semantic-release bot :package::rocket:
NULL
is always not inequal to anything. So instead of!=
or<>
we need to check ifIS DISTINCT FROM
.