aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/insert/append_missing_null.sql
blob: e92b42613213a7041a2ed2b4721d5dda2cc4da54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* postgres can not */
use plato;

insert into @foo
select null as x, 1 as y;

commit;

insert into @foo
select 2 as y;

commit;

select * from @foo;