aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/udf/python_udf_with_settings_fail1.sqlx
blob: b753a203f0b18480d57e27226df66ad4e023f4d4 (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, Int32); -- no custom user type

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