blob: 2557b94ac4ca621aede218a61f93ad1fb562c0d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
PRAGMA DisableSimpleColumns;
PRAGMA DisablePullUpFlatMapOverJoin;
use plato;
pragma yt.JoinMergeTablesLimit="10";
from (select k1, v1 as u1 from Input1) as a
join (select k2, v2 as u2 from Input2) as b on a.k1 = b.k2
select a.k1,a.u1,b.u2
order by a.k1,a.u1;
|