Modify err msg of OB_BACKUP_FORMAT_FILE_NOT_EXIST and OB_BACKUP_FORMAT_FILE_NOT_MATCH

This commit is contained in:
obdev
2024-02-10 11:52:35 +00:00
committed by ob-robot
parent 8bf2034765
commit 22d187b462
5 changed files with 22 additions and 16 deletions

View File

@ -22647,11 +22647,11 @@ static const _error _error_OB_BACKUP_FORMAT_FILE_NOT_EXIST = {
.error_solution = "Contact OceanBase Support",
.mysql_errno = -1,
.sqlstate = "HY000",
.str_error = "the format file does not exist under the destination",
.str_user_error = "the format file does not exist under the destination",
.str_error = "format file does not exist",
.str_user_error = "format file does not exist%s",
.oracle_errno = 600,
.oracle_str_error = "ORA-00600: internal error code, arguments: -9080, the format file does not exist under the destination",
.oracle_str_user_error = "ORA-00600: internal error code, arguments: -9080, the format file does not exist under the destination"
.oracle_str_error = "ORA-00600: internal error code, arguments: -9080, format file does not exist",
.oracle_str_user_error = "ORA-00600: internal error code, arguments: -9080, format file does not exist%s"
};
static const _error _error_OB_BACKUP_FORMAT_FILE_NOT_MATCH = {
.error_name = "OB_BACKUP_FORMAT_FILE_NOT_MATCH",
@ -22659,11 +22659,11 @@ static const _error _error_OB_BACKUP_FORMAT_FILE_NOT_MATCH = {
.error_solution = "Contact OceanBase Support",
.mysql_errno = -1,
.sqlstate = "HY000",
.str_error = "the content of the format file at the destination does not match",
.str_user_error = "the content of the format file at the destination does not match",
.str_error = "format file does not match",
.str_user_error = "format file does not match%s",
.oracle_errno = 600,
.oracle_str_error = "ORA-00600: internal error code, arguments: -9081, the content of the format file at the destination does not match",
.oracle_str_user_error = "ORA-00600: internal error code, arguments: -9081, the content of the format file at the destination does not match"
.oracle_str_error = "ORA-00600: internal error code, arguments: -9081, format file does not match",
.oracle_str_user_error = "ORA-00600: internal error code, arguments: -9081, format file does not match%s"
};
static const _error _error_OB_BACKUP_DEVICE_OUT_OF_SPACE = {
.error_name = "OB_BACKUP_DEVICE_OUT_OF_SPACE",