Example: Function Selection for NULL as a Literal Argument - 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
Language
English (United States)
Last Update
2023-07-11
dita:mapPath
iiv1628111441820.ditamap
dita:ditavalPath
qkf1628213546010.ditaval
dita:id
B035-1147
lifecycle
latest
Product Category
Teradata Vantage™

Consider the following Extrapolate functions and the corresponding specific name as specified in the SPECIFIC clause of CREATE FUNCTION.

Function Name and Parameters Specific Name
Extrapolate(a INTEGER, b INTEGER, c INTEGER) S1
Extrapolate(a VARCHAR(20), b VARCHAR(20), c VARCHAR(20)) S2

The results of calling the function with NULL as a literal argument appears in the following table.

IF the function invocation is … THEN Vantage
SELECT Extrapolate(3, NULL, 9);
invokes the function name with the specific name S1.
SELECT Extrapolate('Ver', NULL, '*.*');
invokes the function name with the specific name S2.
SELECT Extrapolate(NULL, NULL, NULL);
returns an error.
SELECT Extrapolate(CAST(NULL AS INTEGER), NULL, NULL);
invokes the function name with the specific name S1.