pub type AppendError = ErrorData;Expand description
The error type every fallible Appender operation reports.
DuckDB exposes the appender’s error two ways, and only one of them is in
the stable prefix:
| Feature | Type | C API |
|---|---|---|
duckdb-1-5 on | ErrorData — message and machine-readable category | duckdb_appender_error_data (unstable slot 408) |
duckdb-1-5 off | ExtensionError — message only | duckdb_appender_error (stable slot 285) |
Enabling duckdb-1-5 therefore upgrades the error type in place; it does
not change any method’s shape.
Aliased Type§
pub struct AppendError { /* private fields */ }