blob: 8ea32ffc359f2eb728d298ba8f121b7837c69ea7 (
plain) (
blame)
1
2
3
4
|
-- kikimr only: pragma kikimr.UnwrapReadTableValues = "false"; create table plato.Output (key varchar null, subkey varchar null, value varchar null, primary key (key)); commit;
/* postgres can not */
insert into plato.Output (key, subkey, value)
values ("1", "2", "3"), ("4", "5", "6"), ("7", "8", "9");
|