quackdb_internal::ffi

Function duckdb_table_function_set_extra_info

Source
pub unsafe extern "C" fn duckdb_table_function_set_extra_info(
    table_function: *mut c_void,
    extra_info: *mut c_void,
    destroy: Option<unsafe extern "C" fn(_: *mut c_void)>,
)
Expand description

Assigns extra information to the table function that can be fetched during binding, etc.

table_function: The table function extra_info: The extra information destroy: The callback that will be called to destroy the bind data (if any)