aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/union_all/infer_3.sql
blob: ba01618d8a795226dc10248ab3bde7baecbaf016 (plain) (blame)
1
2
3
4
5
6
7
8
/* postgres can not */
use plato;

select Just(1) as x,1 as y
union all
select Just(1l) as x, 2 as y
union all
select 3 as y;