blob: 54066e1d90064693ffd11a29b160a90d5717aa0c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
use plato;
/* postgres can not */
/* kikimr can not */
pragma DisableSimpleColumns;
pragma yt.MapJoinLimit="1m";
select *
from Input1 as a join Input2 as b on a.key = b.key and a.subkey = b.key;
|