aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/YtNative/PureImportUdf.yql
blob: 92abfcd35cfe46e1d25fd5119c7de268adf4f583 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# not supported on windows
(
#comment
(let config (DataSource 'config))
(let world (Configure! world config 'ImportUdfs 'myfile))
(let world (Configure! world config 'PureDataSource 'yt))
(let res_sink (DataSink 'result))
(let data (Apply (Udf 'TestImportUdf.Concat) (String 'abc) (String '"")))
(let world (Write! world res_sink (Key) data '('('type))))
(let world (Commit! world res_sink))
(return world)
)