Function libduckdb_sys::duckdb_create_array_value

source ·
pub unsafe extern "C" fn duckdb_create_array_value(
    type_: duckdb_logical_type,
    values: *mut duckdb_value,
    value_count: idx_t
) -> duckdb_value
Expand description

Creates a array value from a type and an array of values of length value_count

type: The type of the array values: The values for the array value_count: The number of values in the array returns: The value. This must be destroyed with duckdb_destroy_value.