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.
@param result The result object the data chunk have been fetched from. @param chunk The data chunk to convert. @param out_array The output array.