yugabyte=# show transform_null_equals;
transform_null_equals
-----------------------
off
(1 row)
yugabyte=# SELECT NULL = NULL;
?column?
----------
(1 row)
yugabyte=# set transform_null_equals = on;
SET
yugabyte=# SELECT NULL = NULL;
?column?
----------
t
(1 row)