summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/action/action_udf_args.yql
blob: 2ec3c28c5b6472afba9d5b1cf9157c8432b0bf12 (plain) (blame)
1
2
3
4
5
6
define action $f($x) as
    select $x;
end define;

$x = CAST(Unicode::ToUpper("abc"u) AS String);
do $f($x);