aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/expr/distinct_from.sql
blob: bcb2a12714450d4358e1d29ddaa3bbe4afffd359 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/* syntax version 1 */
/* postgres can not */

select
    1 is distinct from 2,
    1 is not distinct from 2,
    null is distinct from null,
    Just(1 + 2) is distinct from Nothing(Int32?),
    Nothing(Int32??) is not distinct from Just(Nothing(Int32?))
;