pub unsafe extern "C" fn duckdb_register_scalar_function_set(
con: duckdb_connection,
set: duckdb_scalar_function_set,
) -> duckdb_stateExpand description
Register the scalar function set within the given connection.
The set requires at least a single valid overload.
If the set is incomplete or a function with this name already exists DuckDBError is returned.
@param con The connection to register it in. @param set The function set to register @return Whether or not the registration was successful.