pub unsafe extern "C" fn duckdb_scalar_function_set_volatile(
scalar_function: duckdb_scalar_function,
)
Expand description
Sets the Function Stability of the scalar function to VOLATILE, indicating the function should be re-run for every row. This limits optimization that can be performed for the function.
@param scalar_function The scalar function.