[replay] fix replay serial part log when txn recover scn after final serial log

This commit is contained in:
chinaxing
2024-02-09 13:50:18 +00:00
committed by ob-robot
parent d6a09219c5
commit 7084582acf
13 changed files with 154 additions and 52 deletions

View File

@ -136,9 +136,10 @@ public:
if (t) {
share::SCN scn;
scn.convert_for_tx(1231231231);
callback_mgr_.set_parallel_logging(scn);
transaction::ObTxSEQ seq(1000, 0);
callback_mgr_.set_parallel_logging(scn, seq);
} else {
callback_mgr_.set_parallel_logging(share::SCN::max_scn());
callback_mgr_.set_parallel_logging(share::SCN::max_scn(), transaction::ObTxSEQ::INVL());
}
}
ObRedoLogSubmitHelper helper_;