aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/View/Key1AfterUdfRawData.yql
blob: 7e579328e64dd5b87fa7565af94de0151dcde6ac (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)) '('view (String 'key2))) '('column0) '() ) )
(let world (Left! x))
(let table1 (Right! x))
(let res_sink (DataSink 'result))
(let world (Write! world res_sink (Key) table1 '('('type))))
(let world (Commit! world res_sink))
(return world)
)