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

$f = Udf($f, "bar" as TypeConfig); -- no type config

SELECT
    $f('foo', '?')