pub unsafe extern "C" fn duckdb_create_array_type(
type_: duckdb_logical_type,
array_size: idx_t,
) -> duckdb_logical_type
Expand description
Creates an ARRAY type from its child type.
The return type must be destroyed with duckdb_destroy_logical_type
.
@param type The child type of the array. @param array_size The number of elements in the array. @return The logical type.