transfer gets tablet meta optimization
This commit is contained in:
@ -1432,6 +1432,7 @@ constexpr int OB_TRANSFER_WAIT_TRANSACTION_END_TIMEOUT = -7119;
|
||||
constexpr int OB_TABLET_GC_LOCK_CONFLICT = -7120;
|
||||
constexpr int OB_SEQUENCE_NOT_MATCH = -7121;
|
||||
constexpr int OB_SEQUENCE_TOO_SMALL = -7122;
|
||||
constexpr int OB_TRANSFER_CANNOT_START = -7123;
|
||||
constexpr int OB_ERR_INVALID_XML_DATATYPE = -7402;
|
||||
constexpr int OB_ERR_XML_MISSING_COMMA = -7403;
|
||||
constexpr int OB_ERR_INVALID_XPATH_EXPRESSION = -7404;
|
||||
@ -3460,6 +3461,7 @@ constexpr int OB_ERR_INVALID_DATE_MSG_FMT_V2 = -4219;
|
||||
#define OB_TABLET_GC_LOCK_CONFLICT__USER_ERROR_MSG "tablet GC lock conflict"
|
||||
#define OB_SEQUENCE_NOT_MATCH__USER_ERROR_MSG "compare sequence not match"
|
||||
#define OB_SEQUENCE_TOO_SMALL__USER_ERROR_MSG "compare sequence too small"
|
||||
#define OB_TRANSFER_CANNOT_START__USER_ERROR_MSG "transfer cannot start"
|
||||
#define OB_ERR_GIS_DIFFERENT_SRIDS__USER_ERROR_MSG "Binary geometry function %s given two geometries of different srids: %u and %u, which should have been identical."
|
||||
#define OB_ERR_GIS_UNSUPPORTED_ARGUMENT__USER_ERROR_MSG "Calling geometry function %s with unsupported types of arguments."
|
||||
#define OB_ERR_GIS_UNKNOWN_ERROR__USER_ERROR_MSG "Unknown GIS error occurred in function %s."
|
||||
@ -5599,6 +5601,7 @@ constexpr int OB_ERR_INVALID_DATE_MSG_FMT_V2 = -4219;
|
||||
#define OB_TABLET_GC_LOCK_CONFLICT__ORA_USER_ERROR_MSG "ORA-00600: internal error code, arguments: -7120, tablet GC lock conflict"
|
||||
#define OB_SEQUENCE_NOT_MATCH__ORA_USER_ERROR_MSG "ORA-00600: internal error code, arguments: -7121, compare sequence not match"
|
||||
#define OB_SEQUENCE_TOO_SMALL__ORA_USER_ERROR_MSG "ORA-00600: internal error code, arguments: -7122, compare sequence too small"
|
||||
#define OB_TRANSFER_CANNOT_START__ORA_USER_ERROR_MSG "ORA-00600: internal error code, arguments: -7123, transfer cannot start"
|
||||
#define OB_ERR_GIS_DIFFERENT_SRIDS__ORA_USER_ERROR_MSG "ORA-00600: Binary geometry function %s given two geometries of different srids: %u and %u, which should have been identical."
|
||||
#define OB_ERR_GIS_UNSUPPORTED_ARGUMENT__ORA_USER_ERROR_MSG "ORA-00600: Calling geometry function %s with unsupported types of arguments."
|
||||
#define OB_ERR_GIS_UNKNOWN_ERROR__ORA_USER_ERROR_MSG "ORA-00600: Unknown GIS error occurred in function %s."
|
||||
@ -6077,7 +6080,7 @@ constexpr int OB_ERR_INVALID_DATE_MSG_FMT_V2 = -4219;
|
||||
#define OB_ERR_DATA_TOO_LONG_MSG_FMT_V2__ORA_USER_ERROR_MSG "ORA-12899: value too large for column %.*s (actual: %ld, maximum: %ld)"
|
||||
#define OB_ERR_INVALID_DATE_MSG_FMT_V2__ORA_USER_ERROR_MSG "ORA-01861: Incorrect datetime value for column '%.*s' at row %ld"
|
||||
|
||||
extern int g_all_ob_errnos[2135];
|
||||
extern int g_all_ob_errnos[2136];
|
||||
|
||||
const char *ob_error_name(const int oberr);
|
||||
const char* ob_error_cause(const int oberr);
|
||||
|
||||
Reference in New Issue
Block a user