blob: 741b5dc3663a37f7d3db6cfd70b84205c270354d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* postgres can not */
/* kikimr can not */
/* ignore plan diff */
use plato;
pragma yt.ScriptCpu="1.0";
insert into Output1 select "1" as key, subkey, value from Input;
insert into Output2 select "2" as key, subkey, value from Input;
insert into Output2 select "3" as key, subkey, value from Input;
insert into Output1 select "4" as key, subkey, value from Input;
pragma yt.ScriptCpu="2.0";
insert into Output1 select "5" as key, subkey, value from Input;
insert into Output1 select "6" as key, subkey, value from Input;
|