Function duckdb_table_function_set_extra_info

Source
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.

@param table_function The table function @param extra_info The extra information @param destroy The callback that will be called to destroy the extra information (if any)