Function duckdb_query_arrow_error

Source
pub unsafe extern "C" fn duckdb_query_arrow_error(
    result: duckdb_arrow,
) -> *const c_char
Expand description

DEPRECATION NOTICE**: This method is scheduled for removal in a future release.

Returns the error message contained within the result. The error is only set if duckdb_query_arrow returns DuckDBError.

The error message should not be freed. It will be de-allocated when duckdb_destroy_arrow is called.

@param result The result object to fetch the error from. @return The error of the result.