blob: 46f2024768a8136bdc1fa56d443ae988439a859f (
plain) (
blame)
1
2
3
|
/* postgres can not */
-- kikimr only: pragma kikimr.UnwrapReadTableValues = "false"; create table plato.Output (key varchar null, subkey varchar null, value varchar null, primary key (key)); commit;
insert into plato.Output with truncate (key, subkey, value) select key, subkey, value from plato.Input order by key desc;
|