aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/udf/python_udf_with_settings.sql
blob: 10ec14a8648983f1489edaa3906f5d5af25b40c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
$f = Python::f(Callable<(String,y:String)->String>,@@
def f(x,y):
    return x + y
@@);

$f = Udf($f, "64.0" as Cpu, "4294967296" as ExtraMem);

SELECT
    $f('foo', '?'),
    $f('foo', '!' as y)