fix error logs caused by migration dest which hasn't been flashbacked CR评审中 (1) 396ad35f

This commit is contained in:
BinChenn
2023-02-08 15:21:32 +08:00
committed by ob-robot
parent f4ebe4f737
commit 534bb13a9c
14 changed files with 125 additions and 24 deletions

View File

@ -443,6 +443,9 @@ int ObLogService::update_replayable_point(const SCN &replayable_point)
CLOG_LOG(WARN, "log_service is not inited", K(ret));
} else if (OB_FAIL(replay_service_.update_replayable_point(replayable_point))) {
CLOG_LOG(WARN, "update_replayable_point failed", K(ret), K(replayable_point));
// should be removed in version 4.2.0.0
} else if (OB_FAIL(palf_env_->update_replayable_point(replayable_point))) {
CLOG_LOG(WARN, "update_replayable_point failed", K(replayable_point));
}
return ret;
}