aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/EquiJoin/HintRightUniqueInnerMap.yql
blob: 16a90e3314caec455122c3b833be6de7795956f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(
(let world (Configure! world (DataSource '"yt" '"$all") '"Attr" '"mapjoinlimit" '"1m"))
(let mr_source (DataSource 'yt 'plato))
(let x (Read! world mr_source (Key '('table (String 'Input1))) '('key 'subkey 'value) '()))
(let world (Left! x))
(let table1 (Right! x))
(let table1 (Map table1 (lambda '(item) (AsStruct
  '('key (Just (Member item 'key)))
  '('subkey (Just (Member item 'subkey)))
  '('value (Just (Member item 'value)))))))

(let x (Read! world mr_source (Key '('table (String 'Input2))) '('key 'subkey 'value) '()))
(let world (Left! x))
(let table2 (Right! x))

(let table2 (Map table2 (lambda '(item) (AsStruct
  '('key (Just (Member item 'key)))
  '('subkey (Just (Member item 'subkey)))
  '('value (Just (Member item 'value)))))))

(let join (EquiJoin '(table1 'a) '(table2 'b)
    '('Inner '"a" '"b" '('"a" '"key") '('"b" '"key" ) '('('right 'unique))) 
    '()))

(let res_sink (DataSink 'result))
(let world (Write! world res_sink (Key) join '('('type))))
(let world (Commit! world res_sink))
(return world)
)