blob: eef71b8aff60712d267d5926fdbbe7fc6fa0b835 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* postgres can not */
/* kikimr can not */
/* dqfile can not - missing langver support */
/* hybridfile can not - missing langver support */
use plato;
pragma yt.UseNativeDynamicTableRead;
replace into Output
select "x" as key;
select * from Output;
commit;
select * from Output;
|