summaryrefslogtreecommitdiffstats
path: root/yt/yql/tests/sql/suites/insert_dynamic/replace_in_second_epoch2.yql
blob: a1cb2f421924d32f829b13298793955a98f90e3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* postgres can not */
/* kikimr can not */
/* dqfile can not - missing langver support */
/* hybridfile can not - missing langver support */
use plato;
pragma yt.UseNativeDynamicTableRead;

insert into OutputStatic
select "x" as key;

commit;

replace into Output
select * from OutputStatic;

commit;

select * from Output;