[4.1] support distributed txn free route
This commit is contained in:
@ -1288,6 +1288,7 @@ constexpr int OB_OBJ_LOCK_NOT_COMPLETED = -6275;
|
||||
constexpr int OB_OBJ_UNLOCK_CONFLICT = -6276;
|
||||
constexpr int OB_SCN_OUT_OF_BOUND = -6277;
|
||||
constexpr int OB_TRANS_IDLE_TIMEOUT = -6278;
|
||||
constexpr int OB_TRANS_FREE_ROUTE_NOT_SUPPORTED = -6279;
|
||||
constexpr int OB_LOG_ID_NOT_FOUND = -6301;
|
||||
constexpr int OB_LSR_THREAD_STOPPED = -6302;
|
||||
constexpr int OB_NO_LOG = -6303;
|
||||
@ -3186,6 +3187,7 @@ constexpr int OB_ERR_INVALID_DATE_MSG_FMT_V2 = -4219;
|
||||
#define OB_OBJ_UNLOCK_CONFLICT__USER_ERROR_MSG "there is an unlock operation doing, unlock conflict."
|
||||
#define OB_SCN_OUT_OF_BOUND__USER_ERROR_MSG "scn is out of bounds of memtable"
|
||||
#define OB_TRANS_IDLE_TIMEOUT__USER_ERROR_MSG "Transaction idle timeout occurred, please rollback the transaction, set the variable ob_trx_idle_timeout to a larger value and then restart the transaction"
|
||||
#define OB_TRANS_FREE_ROUTE_NOT_SUPPORTED__USER_ERROR_MSG "Query is not supported to be executed on txn temporary node"
|
||||
#define OB_LOG_ID_NOT_FOUND__USER_ERROR_MSG "log id not found"
|
||||
#define OB_LSR_THREAD_STOPPED__USER_ERROR_MSG "log scan runnable thread stop"
|
||||
#define OB_NO_LOG__USER_ERROR_MSG "no log ever scanned"
|
||||
@ -5192,6 +5194,7 @@ constexpr int OB_ERR_INVALID_DATE_MSG_FMT_V2 = -4219;
|
||||
#define OB_OBJ_UNLOCK_CONFLICT__ORA_USER_ERROR_MSG "ORA-00600: internal error code, arguments: -6276, there is an unlock operation doing, unlock conflict."
|
||||
#define OB_SCN_OUT_OF_BOUND__ORA_USER_ERROR_MSG "ORA-00600: internal error code, arguments: -6277, scn is out of bounds of memtable"
|
||||
#define OB_TRANS_IDLE_TIMEOUT__ORA_USER_ERROR_MSG "ORA-24761: transaction rolled back: transaction idle timeout"
|
||||
#define OB_TRANS_FREE_ROUTE_NOT_SUPPORTED__ORA_USER_ERROR_MSG "ORA-00600: internal error code, arguments: -6279, Query is not supported to be executed on txn temporary node"
|
||||
#define OB_LOG_ID_NOT_FOUND__ORA_USER_ERROR_MSG "ORA-00600: internal error code, arguments: -6301, log id not found"
|
||||
#define OB_LSR_THREAD_STOPPED__ORA_USER_ERROR_MSG "ORA-00600: internal error code, arguments: -6302, log scan runnable thread stop"
|
||||
#define OB_NO_LOG__ORA_USER_ERROR_MSG "ORA-00600: internal error code, arguments: -6303, no log ever scanned"
|
||||
|
||||
Reference in New Issue
Block a user