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
DEPRECATION NOTICE**: This method is scheduled for removal in a future release.
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.