pub unsafe extern "C" fn duckdb_vector_assign_string_element(
vector: duckdb_vector,
index: idx_t,
str_: *const c_char,
)Expand description
Assigns a string element in the vector at the specified location. The vector type must be VARCHAR and the input must be valid UTF-8. Otherwise, undefined behavior is expected at later stages.
@param vector The vector to alter @param index The row position in the vector to assign the string to @param str The null-terminated string