blob: e72377c517189ce7b3fcb42582a7881af08f60f9 (
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 "y" as key;
commit;
select * from Output;
|