Retrieves all the values associated with a given key in a Custom clause and their corresponding lengths.
The values associated with a given key in a Custom clause and the length of each value.
The value that is returned can be an OID (object identifier). The OID is in the form of a client locator.
Syntax
int
FNC_TblOpGetCustomValuesOf(Key_info_t *key);
Syntax Elements
- key
- Location of the data structure where key is specified and where values and lengths are to be placed.
For details about the Key_info_t structure, see Table Operator Data Structures.
Usage Notes
Before calling FNC_TblOpGetCustomValuesOf, you must allocate memory for the values to be returned:
key->values_r = FNC_malloc(sizeof(values_t)*key->numOfVal);
You must release the memory when the values are no longer needed:
FNC_free(key->values_r);
Example Using FNC_TblOpGetCustomValuesOf
See C Table Operator for an example of how to use this function.
Related Information
For details about the Custom clause of a table operator, see information about the SELECT statement FROM clause in Teradata Vantage⢠- SQL Data Manipulation Language, B035-1146.