aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/insert/select_after_replace.sql
blob: 6c176e12beb87d4937b0d4eedb54a3120fe59bea (plain) (blame)
1
2
3
4
5
6
/* postgres can not */
/* multirun 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;
commit;
select key, subkey, value from plato.Output;