snowflake.snowpark.functions.call_builtin¶
- snowflake.snowpark.functions.call_builtin(function_name: str, *args: ColumnOrLiteral) Column[source]¶
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::