aboutsummaryrefslogtreecommitdiffstats
path: root/ydb/library/yql/tests/s-expressions/suites/View/TrivialDataCopy.yql
blob: f5eb0c356b10302166625c6a23ec91f6c9fa26c2 (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 'trivial))) '('value) '() ) )
(let world (Left! x))
(let table1 (Right! x))
(let mr_sink (DataSink 'yt 'plato))
(let world (Write! world mr_sink (Key '('table (String 'Output)) ) table1 '() ))
(let world (Commit! world mr_sink))
(return world)
)