pub unsafe extern "C" fn duckdb_vector_assign_string_element_len(
vector: duckdb_vector,
index: idx_t,
str_: *const c_char,
str_len: idx_t,
)
Expand description
Assigns a string element in the vector at the specified location. You may also use this function to assign BLOBs.
@param vector The vector to alter @param index The row position in the vector to assign the string to @param str The string @param str_len The length of the string (in bytes)