aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/File/FileContent.yql
blob: 3e34cb8a5817040fc3e7aa3f37f42b4c80bc0d3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
(
#comment
(let config (DataSource 'config))
(let world (Configure! world config 'PureDataSource 'yt))

(let res_sink (DataSink 'result))
(let world (Write! world res_sink (Key) (FileContent 'MyFile) '()))
(let world (Commit! world res_sink))
(return world)
)