aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/action/action_udf_args.sql
blob: 16f7eefcaf19240af1eea2d267ac5ebc4e8feca5 (plain) (blame)
1
2
3
4
5
6
7
8
/* syntax version 1 */
/* postgres can not */
define action $f($x) as
    select $x;
end define;

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