-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(mvcc): fix commit xid may be accidentally reused (#26)
**问题:** 在事务恢复阶段,`MTR_BEGIN` 日志对应的 trx id 会在 `MvccTrxManager` 类的 `create_trx(int32_t trx_id)` 方法中更新 `current_trx_id` 以避免重复使用,符合预期。但是 `MTR_COMMIT` 日志所使用的 commit xid 没有更新,可能会被重用而导致错误的结果。 **解决方案:** 增加 `update_trx_id` 方法用于确保 `current_trx_id` 不小于给定的参数。在 recover 阶段,`MvccTrx` 提交时应当调用该方法更新 `current_trx_id`。
- Loading branch information
1 parent
328df69
commit d4f8684
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters