pub unsafe extern "C" fn duckdb_list_vector_set_size(
vector: duckdb_vector,
size: idx_t,
) -> duckdb_state
Expand description
Sets the total size of the underlying child-vector of a list vector.
@param vector The list vector. @param size The size of the child list. @return The duckdb state. Returns DuckDBError if the vector is nullptr.