aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/ManyInputTables/LengthOfWeakConcatTables.yql
blob: b103b4e66ec68f0ec84b8cea2693de41ca120f0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(
#comment
(let mr_source (DataSource 'yt 'plato))
(let x (Read! world mr_source (MrTableConcat (Key '('table (String 'Input1))) (Key '('table (String 'Input2)))) (Void) '()))
(let world (Left! x))
(let tables (Right! x))
(let length (Length tables))
(let mr_sink (DataSink 'yt (quote plato)))
(let world (Write! world mr_sink (Key '('table (String 'Output))) (Just (AsStruct '('value length))) '()))
(let res_sink (DataSink 'result))
(let world (Write! world res_sink (Key) length '()))
(let world (Commit! world mr_sink))
(let world (Commit! world res_sink))
(return world)
)