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
kuzu> RETURN CASE NULL WHEN NULL THEN "Null value" ELSE "Not null value" END;
-----------------------------------------------------------
| CASE WHEN EQUALS(,) THEN Null value ELSE Not null value |
-----------------------------------------------------------
| Not null value |
-----------------------------------------------------------
(1 tuple)
(1 column)
Time: 0.24ms (compiling), 0.29ms (executing)
The above query should return "null value" since null is null.
The text was updated successfully, but these errors were encountered:
This query returns incorrect result:
The above query should return "null value" since null is null.
The text was updated successfully, but these errors were encountered: