summaryrefslogtreecommitdiffstats
path: root/yt/yql/tests/sql/suites/produce/process_with_python_as_struct.yql
blob: 237c2abef8d1e85869eb0ea02497a11adfce91e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/* postgres can not */
/* syntax version 1 */
$udfScript = @@
def Dup(s):
    return [s, s];
@@;

$udf = Python::Dup(Callable<(String)->List<String>>, $udfScript);

process plato.Input0 using $udf(value) as val;