blob: 04a6ecb98ba72df6c965fef7e46216f4c328ca1b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/* postgres can not */
/* kikimr can not */
use plato;
pragma yt.MapJoinLimit="1M";
pragma yt.TmpFolder="//custom_tmp";
-- MapJoin with table content
$input = (select cast(a.key as Uint64) as key from Input as a cross join Input as b);
-- ResFill with table content
select sum(key) from $input;
|