blob: 40addc79c318595846cf835ad18590bf3284a9ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
(
(let mr_source (DataSource 'yt 'plato))
(let world (Configure! world (DataSource '"yt" '"$all") '"Attr" '"ignoreweakschema" '""))
(let x (Read! world mr_source
(Key '('tablescheme (String 'Input)))
(Void) '()
))
(let world (Left! x))
(let scheme (Right! x))
(let res_sink (DataSink 'result))
(let world (Write! world res_sink (Key) scheme '('('type))))
(let world (Commit! world res_sink))
(return world)
)
|