snowflake.snowpark.functions.call_builtin¶
- snowflake.snowpark.functions.call_builtin(function_name: str, *args: ColumnOrLiteral) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.3.0/src/snowflake/snowpark/functions.py#L5546-L5569)¶
Invokes a Snowflake system-defined function (built-in function) with the specified name and arguments.
- Parameters:
function_name – The name of built-in function in Snowflake
args –
Arguments can be in two types:
Column, orBasic Python types, which are converted to Snowpark literals.
- Example::