aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/Udf/ResultWithRemapConfig.yql
blob: 2f14a897090208c4f583222db523517dd9be9c6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
(
#comment
(let mr_source (DataSource 'yt 'plato))
(let x (Read! world mr_source (Key '('table (String 'Input))) (Void) '()))
(let world (Left! x))
(let table (Right! x))
(let sink (DataSink 'result))
(let world (Write! world sink (Key) table '('('type))))
(let world (Commit! world sink))
(return world)
)