blob: b528c14467876bf39d9556f89cfc1d8cb796d4ec (
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 'InputSelf))) '('key 'subkey 'value) '()))
(let world (Left! x))
(let table (Right! x))
(let join (EquiJoin '(table 'a) '(table 'b) '('RightOnly '"a" '"b" '('"a" '"key") '('"b" '"value" ) '()) '()))
(let res_sink (DataSink 'result))
(let sortDir '((Bool 'true) (Bool 'true)))
(let keySelector (lambda '(row) '((Member row '"b.key") (Member row '"b.subkey"))))
(let world (Write! world res_sink (Key) (Sort join sortDir keySelector) '('('type))))
(let world (Commit! world res_sink))
(return world)
)
|