aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/expr/implicit_cast_literals_under_if.sql
blob: 8bcfdcf84b18b30378d7fe0517dee7ed3173df9e (plain) (blame)
1
2
3
4
5
6
/* postgres can not */
select
    IF(3 < 2, 13, 42U) as i32_then,
    IF(3 < 2, 13U, 42) as i32_else,
    IF(3 < 2, 13L, 42U) as i64_then,
    IF(3 < 2, 13U, 42L) as i64_else;