pub unsafe extern "C" fn duckdb_function_get_bind_data(
info: duckdb_function_info,
) -> *mut c_void
Expand description
Gets the table function’s bind data set by duckdb_bind_set_bind_data
.
Note that the bind data is read-only. For tracking state, use the init data instead.
@param info The function info object. @return The bind data object.