Method Signature for Scalar UDFs - Analytics Database - Teradata Vantage

SQL External Routine Programming

Deployment
VantageCloud
VantageCore
Edition
Enterprise
IntelliFlex
VMware
Product
Analytics Database
Teradata Vantage
Release Number
17.20
Published
June 2022
ft:locale
en-US
ft:lastEdition
2023-07-11
dita:mapPath
iiv1628111441820.ditamap
dita:ditavalPath
qkf1628213546010.ditaval
dita:id
B035-1147
lifecycle
latest
Product Category
Teradata Vantage™

Syntax

public class class_name {
   ...
   public static result_type method_name (
     [ type input_param [,...] ]
   )
   {
     ...
   }
}

Syntax Elements

class_name
Java class name.
result_type
Java primitive or class corresponding to the SQL data type in the RETURNS clause of the corresponding CREATE FUNCTION statement.
method_name
Java method name.
type
Data type of input_param, a Java primitive or class corresponding to the SQL data type of the input argument.
input_param
Input parameter for Java method. The method signature must have an input_param for each parameter in the CREATE FUNCTION statement.
The maximum number of input parameters is 128.