blob: 5af91b6da646fc7471ff86ec4bff309c249ac7de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* 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
order by key;
select * from Output;
commit;
select * from Output;
|