Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
public @interface ArgumentHint {
    String name() default "";

    boolean isOptional() default true;
}

...


Develop UDX or call procedures that support named parameters.

For UDF development or call developers, the UDX or procedure we develop can be roughly divided into two types:

1 . Class overloads multiple methods with different parameters and types. Users need to specify all the parameters when using.

...