Example: Function Mapping Definition with Scalar Subquery (SSQ) Substitution - Teradata VantageCloud Lake

Lake - Working with SQL

Deployment
VantageCloud
Edition
Lake
Product
Teradata VantageCloud Lake
Release Number
Published
February 2025
ft:locale
en-US
ft:lastEdition
2025-11-21
dita:mapPath
jbe1714339405530.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
jbe1714339405530

The function mapping definition sessionize_fm specifies a scalar subquery for the TIMEOUT column value:

SELECT timeout FROM ssqtbl WHERE username='John'

If TIMEOUT is not specified during function processing, the column value is resolved by processing the scalar subquery.

CREATE FUNCTION MAPPING sessionize_fm FOR sessionize SERVER coprocessor
USING
InputTable IN TABLE,
ModelTable IN TABLE,
ClusterTable OUT TABLE,
TIMECOLUMN,
TIMEOUT(SELECT timeout FROM ssqtbl WHERE username='John'),
CLICKLAG,
EMITNULL;