aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/expr/is_null.sql
blob: e583901a729dc294ffb9b1fc0a94fa6b495dc7bd (plain) (blame)
1
2
3
4
5
6
/* postgres can not */
select
    1/0 is NULL,
    1/0 isnull,
    1/0 is not NULL,
    1/0 notnull;