blob: 5d0a0e557a53b71c1b7549286331df6ca72a61b5 (
plain) (
blame)
1
2
|
-- 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 (key, subkey, value) values ("1", "2", "3");
|