I recently discovered that a time range can be empty which appears to be different vs a null field.
db=# select tstzrange(now(), now());
tstzrange
-----------
empty
(1 row)
db=# select tstzrange(now(), now()) is null;
?column?
----------
f
(1 row)
How can I match an empty field for a query?