SELECT, FROM, and WHERE clauses of .
Overview
The basic components of a user-defined function are a name, list of arguments, return type, volatility, language, and function body.- An argument has a mode and a type. CockroachDB supports the
INargument mode. The type can be a built-in type, , or implicit record type. CockroachDB does not support default values for arguments. - The return type can be a built-in , user-defined , , implicit record type, or
VOID.- Preceding a type with
SETOFindicates that a set, or multiple rows, may be returned. For an example, see . VOIDindicates that there is no return type andNULLwill always be returned.
- Preceding a type with
- The indicates whether the function has side effects.
VOLATILEandNOT LEAKPROOFare the default.- Annotate a function with side effects with
VOLATILE. This also prevents the from pre-evaluating the function. - A
STABLEorIMMUTABLEfunction does not mutate data. LEAKPROOFindicates that a function has no side effects and that it communicates nothing that depends on its arguments besides the return value (i.e., it cannot throw an error that depends on the value of its arguments). You must precedeLEAKPROOFwithIMMUTABLE, and onlyIMMUTABLEcan be set toLEAKPROOF.NOT LEAKPROOFis allowed with any other volatility.- Non-
VOLATILEfunctions can be optimized through inlining. For more information, see Create an inlined UDF.
- Annotate a function with side effects with
- The language specifies the language of the function body. CockroachDB supports the language
SQL. - The function body:
- Can reference arguments by name or by their ordinal in the function definition with the syntax
$1. - Can be enclosed in a single line with single quotes
''or multiple lines with$$. - Can reference tables.
- Can reference only the
SELECTstatement.
- Can reference arguments by name or by their ordinal in the function definition with the syntax
Examples
Create a UDF
The following is a UDF that returns the sum of two integers:- name:
add - arguments:
aof typeINT,bof typeINT - return type:
INT - volatility:
IMMUTABLE LEAKPROOF - language:
SQL - function body:
'SELECT a + b'
View a UDF definition
To view the definition for theadd() function:
add when you create it, the default schema is public:
Invoke a UDF
You invoke a UDF like a . To invoke theadd() function:
Create an inlined UDF
When possible, the will improve a function’s performance by inlining the UDF within the query plan. The UDF must have the following attributes:- It is labeled as
IMMUTABLE,STABLE, orLEAKPROOF(i.e., non-VOLATILE). - It has a single statement.
- It is not a .
- Its arguments are only variable or constant expressions.
- It is not a .
-
Create tables
aandb: -
Insert a value (
10) into 1000 rows inaand 1 row inb: -
Create a
VOLATILEfunctionfoo_v()and aSTABLEfunctionfoo_s():Each function returns a specified value from tableb. -
View the query plan when
foo_v()(theVOLATILEfunction) is used in a selection query to retrieve equal values from tablea:The query takes77msto execute because the function is invoked for each row scanned in tablea. -
View the query plan when using
foo_s()(theSTABLEfunction) instead:The query takes only4msto execute because the function is inlined and transformed to a with an equality comparison(a) = (b), which has much less overhead than invoking a function for each row scanned in tablea.
Known limitations
Limitations on use of UDFs
User-defined functions are not currently supported in:- Expressions (column, index, constraint) in tables.
- Views.
- Other user-defined functions.
Limitations on expressions allowed within UDFs
The following are not currently allowed within the body of a UDF:- Mutation statements such as
INSERT,UPDATE,DELETE, andUPSERT. - CTEs (common table expressions).
- References to other user-defined functions.

