aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/Config/DataSources.yql
blob: 0621a7e01607e92014e8714332d61718c0f5a142 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
(
#comment
(let config (DataSource 'config))
(let x (Read! world config (Key '('data_sources)) '() '()))
(let world (Left! x))
(let data (Right! x))
(let res_sink (DataSink 'result))
(let world (Write! world res_sink (Key) data '()))
(let world (Commit! world res_sink))
(return world)
)