action_udf_args.sql 156 B

12345678
  1. /* syntax version 1 */
  2. /* postgres can not */
  3. define action $f($x) as
  4. select $x;
  5. end define;
  6. $x = CAST(Unicode::ToUpper("abc"u) AS String);
  7. do $f($x);