coalesce_symmetry.sql 235 B

1234567891011
  1. /* postgres can not */
  2. $x = 1 + 0;
  3. $y = 2ul + 0ul;
  4. select $x ?? $y;
  5. select $y ?? $x;
  6. select Just($x) ?? $y;
  7. select $y ?? Just($x);
  8. select $x ?? Just($y);
  9. select Just($y) ?? $x;
  10. select Just($x) ?? Just($y);
  11. select Just($y) ?? Just($x);