Function libduckdb_sys::duckdb_result_arrow_array

source ·
pub unsafe extern "C" fn duckdb_result_arrow_array(
    result: duckdb_result,
    chunk: duckdb_data_chunk,
    out_array: *mut duckdb_arrow_array
)
Expand description

Convert a data chunk into an arrow struct array. Remember to call release on the respective ArrowArray object.

result: The result object the data chunk have been fetched from. chunk: The data chunk to convert. out_array: The output array.