blob: 323d6b90a2d59c337e184a0eb1d159b98e61ae8c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* postgres can not */
/* kikimr can not */
/* dqfile can not - missing langver support */
/* hybridfile can not - missing langver support */
/* custom error: Read of dynamic table "Output" is not supported after commit without native dyntable read. Please add PRAGMA yt.UseNativeDynamicTableRead;*/
use plato;
replace into Output
select "x" as key;
commit;
select * from Output;
|