Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions c/include/arrow-adbc/adbc.h
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,13 @@ struct ADBC_EXPORT AdbcErrorDetail {
size_t value_length;
};

/// \brief Get the vendor code for an error (since the vendor code field was
/// repurposed).
///
/// \since ADBC API revision 1.2.0
ADBC_EXPORT
int AdbcErrorGetVendorCode(const struct AdbcError* error);

/// \brief Get the number of metadata values available in an error.
///
/// \since ADBC API revision 1.1.0
Expand Down
Loading