snowflake.snowpark.functions.call_udf¶
- snowflake.snowpark.functions.call_udf(udf_name: str, *args: Union[Column, None, bool, int, float, str, bytearray, Decimal, date, datetime, time, bytes, NaTType, float64, list, tuple, dict]) Column[source]¶
Calls a user-defined function (UDF) by name.
- Parameters:
udf_name – The name of UDF in Snowflake.
args –
Arguments can be in two types:
Column, orBasic Python types, which are converted to Snowpark literals.
- Example::