aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/View/ViewWithUdf.yql
blob: 4d2b6066adb23302bcac6568e049cfbb6bec8e2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(
(let mr_source (DataSource 'yt 'plato))
(let res_sink (DataSink 'result))

(let x (Read! world mr_source (Key
    '('table (String 'Input))
    '('view (String 'key1))
) (Void) '()))

(let world (Left! x))
(let data (Right! x))

(let world (Write! world res_sink (Key) data '()))
(let world (Commit! world res_sink))
(return world)
)