clinical_quality_language icon indicating copy to clipboard operation
clinical_quality_language copied to clipboard

List equality has an issue whenever null is a value in the list

Open mholck opened this issue 2 years ago • 1 comments

For example {'a'} = {'a'} is true but {'a', null} = {'a', null} returns null rather than true

mholck avatar Apr 07 '22 19:04 mholck

According to the spec, this is the correct behavior for list equality. From the spec: If either argument is null, or contains null elements, the result is null.. List equivalence would return true however.

c-schuler avatar Jun 26 '22 01:06 c-schuler