pub unsafe extern "C" fn duckdb_list_vector_reserve(
vector: *mut _duckdb_vector,
required_capacity: u64,
) -> u32
Expand description
Sets the total capacity of the underlying child-vector of a list.
vector: The list vector. required_capacity: the total capacity to reserve. return: The duckdb state. Returns DuckDBError if the vector is nullptr.