distinct_from.sql 259 B

1234567891011
  1. /* syntax version 1 */
  2. /* postgres can not */
  3. select
  4. 1 is distinct from 2,
  5. 1 is not distinct from 2,
  6. null is distinct from null,
  7. Just(1 + 2) is distinct from Nothing(Int32?),
  8. Nothing(Int32??) is not distinct from Just(Nothing(Int32?))
  9. ;