pub unsafe extern "C" fn duckdb_table_description_error(
table_description: duckdb_table_description,
) -> *const c_charExpand description
Returns the error message associated with the given table_description.
If the table_description has no error message, this returns nullptr instead.
The error message should not be freed. It will be de-allocated when duckdb_table_description_destroy is called.
@param table_description The table_description to get the error from.
@return The error message, or nullptr if there is none.