pub unsafe extern "C" fn duckdb_table_function_set_extra_info(
    table_function: duckdb_table_function,
    extra_info: *mut c_void,
    destroy: duckdb_delete_callback_t
)
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)