aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/EquiJoin/SelfJoinLimit1.yql
blob: f142bfd3d6d2f549a0e1cbcf0d07a03c794320de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
(
(let mr_source (DataSource 'yt 'plato))
(let x (Read! world mr_source (Key '('table (String 'Input))) '('key 'subkey 'value) '()))
(let world (Left! x))
(let table (Right! x))
(let table (Take table (Uint64 '2)))
(let join (EquiJoin '(table 'a) '(table 'b) 
'('Inner '"a" '"b" '('"a" '"key") '('"b" '"value") '()) '()))
(let res_sink (DataSink 'result))
(let world (Write! world res_sink (Key) join '('('type))))
(let world (Commit! world res_sink))
(return world)
)