[SCN REFACTOR] replace flash back snapshot and remove read snapshot session
This commit is contained in:
@ -361,10 +361,10 @@ static const _error _error_OB_READ_NOTHING = {
|
||||
.error_name = "OB_READ_NOTHING",
|
||||
.error_cause = "Internal Error",
|
||||
.error_solution = "Contact OceanBase Support",
|
||||
.mysql_errno = -1,
|
||||
.mysql_errno = ER_SP_FETCH_NO_DATA,
|
||||
.sqlstate = "02000",
|
||||
.str_error = "Nothing to read",
|
||||
.str_user_error = "Nothing to read",
|
||||
.str_error = "No data - zero rows fetched, selected, or processed",
|
||||
.str_user_error = "No data - zero rows fetched, selected, or processed",
|
||||
.oracle_errno = 1403,
|
||||
.oracle_str_error = "ORA-01403: no data found",
|
||||
.oracle_str_user_error = "ORA-01403: no data found"
|
||||
@ -21861,18 +21861,6 @@ static const _error _error_OB_ERR_NAME_HAS_TOO_MANY_PARTS = {
|
||||
.oracle_str_error = "ORA-06563: name has too many parts",
|
||||
.oracle_str_user_error = "ORA-06563: name has too many parts"
|
||||
};
|
||||
static const _error _error_OB_ERR_SP_FETCH_NO_DATA = {
|
||||
.error_name = "OB_ERR_SP_FETCH_NO_DATA",
|
||||
.error_cause = "Internal Error",
|
||||
.error_solution = "Contact OceanBase Support",
|
||||
.mysql_errno = ER_SP_FETCH_NO_DATA,
|
||||
.sqlstate = "HY000",
|
||||
.str_error = "No data - zero rows fetched, selected, or processed",
|
||||
.str_user_error = "No data - zero rows fetched, selected, or processed",
|
||||
.oracle_errno = 600,
|
||||
.oracle_str_error = "ORA-00600: internal error code, arguments: -9715, No data - zero rows fetched, selected, or processed",
|
||||
.oracle_str_user_error = "ORA-00600: internal error code, arguments: -9715, No data - zero rows fetched, selected, or processed"
|
||||
};
|
||||
static const _error _error_OB_SP_RAISE_APPLICATION_ERROR = {
|
||||
.error_name = "OB_SP_RAISE_APPLICATION_ERROR",
|
||||
.error_cause = "Internal Error",
|
||||
@ -23784,7 +23772,6 @@ struct ObStrErrorInit
|
||||
_errors[-OB_ERR_MISSING_INTO_KEYWORD] = &_error_OB_ERR_MISSING_INTO_KEYWORD;
|
||||
_errors[-OB_ERR_CLAUSE_RETURN_ILLEGAL] = &_error_OB_ERR_CLAUSE_RETURN_ILLEGAL;
|
||||
_errors[-OB_ERR_NAME_HAS_TOO_MANY_PARTS] = &_error_OB_ERR_NAME_HAS_TOO_MANY_PARTS;
|
||||
_errors[-OB_ERR_SP_FETCH_NO_DATA] = &_error_OB_ERR_SP_FETCH_NO_DATA;
|
||||
_errors[-OB_SP_RAISE_APPLICATION_ERROR] = &_error_OB_SP_RAISE_APPLICATION_ERROR;
|
||||
_errors[-OB_SP_RAISE_APPLICATION_ERROR_NUM] = &_error_OB_SP_RAISE_APPLICATION_ERROR_NUM;
|
||||
_errors[-OB_CLOB_ONLY_SUPPORT_WITH_MULTIBYTE_FUN] = &_error_OB_CLOB_ONLY_SUPPORT_WITH_MULTIBYTE_FUN;
|
||||
|
||||
Reference in New Issue
Block a user