pub unsafe extern "C" fn duckdb_create_data_chunk(
    types: *mut *mut _duckdb_logical_type,
    column_count: u64
) -> *mut _duckdb_data_chunk
Expand description

Creates an empty DataChunk with the specified set of types.

types: An array of types of the data chunk. column_count: The number of columns. returns: The data chunk.