aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/Udf/PythonGeneratorExprWithClosure.yql
blob: 86a1c9a0bb187a59938cacffa68a3e07e8477a9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(
(let config (DataSource 'config))
(let world (Configure! world config 'PureDataSource 'yt))

# prepare python udf
(let i64 (DataType 'Int64))
(let udfType (CallableType '() '((ListType i64)) '((ListType i64))))
(let udfScript (String '@@
def g(input):
    def gen():
        return (long(x + 42) for x in input)
    return gen
@@))
(let udf (ScriptUdf 'Python 'g udfType udfScript))

# call udf
(let result (Apply udf (AsList (Int64 '1) (Int64 '2) (Int64 '3))))

# output result with type
(let sink (DataSink 'result))
(let world (Write! world sink (Key) result '( '('type) )))

# finish
(return (Commit! world sink))
)