add unique index checking retry

This commit is contained in:
Charles0429
2022-12-15 13:15:26 +00:00
committed by ob-robot
parent c91594425b
commit a8e878a7bc
3 changed files with 3 additions and 3 deletions

View File

@ -1325,7 +1325,7 @@ int ObDDLWaitColumnChecksumCtx::update_status(const common::ObTabletID &tablet_i
found = true;
if (OB_SUCCESS == ret_code) {
item.col_checksum_stat_ = ColChecksumStat::CCS_SUCCEED;
} else if (OB_NOT_MASTER == ret_code || OB_PARTITION_NOT_EXIST == ret_code) {
} else if (ObIDDLTask::in_ddl_retry_white_list(ret_code)) {
item.col_checksum_stat_ = CCS_NOT_MASTER;
} else {
item.col_checksum_stat_ = CCS_FAILED;