Function libduckdb_sys::duckdb_create_array_type

source ·
pub unsafe extern "C" fn duckdb_create_array_type(
    type_: duckdb_logical_type,
    array_size: idx_t
) -> duckdb_logical_type
Expand description

Creates a array type from its child type. The resulting type should be destroyed with duckdb_destroy_logical_type.

type: The child type of array type to create. array_size: The number of elements in the array. returns: The logical type.