null_check.sql 176 B

1234567
  1. /* postgres can not */
  2. /* by correct way ;-)
  3. E assert 'a;;a' == 'a;Void;b'
  4. E - a;;a
  5. E + a;Void;b
  6. */
  7. SELECT 'a', x, 'b' FROM (SELECT Null as x) as sq WHERE x IS NULL;