aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg/coalesce.sql
blob: 0b7018990aaca27f11e53ec8404d5c76c6a02e83 (plain) (blame)
1
2
3
4
5
--!syntax_pg
select coalesce(1,2),coalesce(x,2),coalesce(x,y,z) from 
(
select null::int4 as x, null::int4 as y, 6 as z
) a