You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All definitions for the process eq regarding the comparison of values apply here as well. A null return value from eq is handled exactly as false (no match).
where
If any operand is null, the return value is null. Therefore, eq(null, null) returns null instead of true.
Example #4 says:
array_contains(data = [1,2,null], value = null) => true
Proposed solution:
Correct example would be array_contains(data = [1,2,null], value = null) => false
The text was updated successfully, but these errors were encountered:
Process ID: array_contains
Describe the issue:
Description states:
where
Example #4
says:Proposed solution:
Correct example would be
array_contains(data = [1,2,null], value = null) => false
The text was updated successfully, but these errors were encountered: