Function duckdb_aggregate_function_set_extra_info

Source
pub unsafe extern "C" fn duckdb_aggregate_function_set_extra_info(
    aggregate_function: duckdb_aggregate_function,
    extra_info: *mut c_void,
    destroy: duckdb_delete_callback_t,
)
Expand description

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

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