aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/case/case_opt_cond.sql
blob: 16c3eb2e5818bb3cef03e4ccd5af0e595c586e8e (plain) (blame)
1
2
3
4
5
select case when cast('true' as Bool) then 'FOO1' else 'BAR1' end
union all
select case when cast('false' as Bool) then 'FOO2' else 'BAR2' end
union all
select case when NULL then 'FOO3' else 'BAR3' end;