Function quackdb_internal::ffi::duckdb_query_arrow_array
source · pub unsafe extern "C" fn duckdb_query_arrow_array(
result: *mut _duckdb_arrow,
out_array: *mut *mut _duckdb_arrow_array
) -> u32
Expand description
Fetch an internal arrow array from the arrow result.
This function can be called multiple time to get next chunks, which will free the previous out_array. So consume the out_array before calling this function again.
result: The result to fetch the array from.
out_array: The output array.
returns: DuckDBSuccess
on success or DuckDBError
on failure.