aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/Udf/PartialCall.yql
blob: ce81c3df0d50ac03a181e09586b6f79710b63b95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(
#comment
(let config (DataSource 'config))
(let world (Configure! world config 'PureDataSource 'yt))

(let res_sink (DataSink 'result))
(let udf (Udf 'SimpleUdf.EchoWithPrefix))
(let x (String 'aaa))
(let y (String 'bbb))
(let data (Apply udf x))
(let world (Write! world res_sink (Key) data '()))
(let data (Apply udf x y))
(let world (Write! world res_sink (Key) data '()))
(let world (Commit! world res_sink))
(return world)
)