Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix](binlog) add modify comment binlog when replaying journal (#43827)
Browse files Browse the repository at this point in the history
This issue is introduced in #39783
w41ter authored and Your Name committed Nov 14, 2024
1 parent 27125e6 commit 5a0b6b1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
@@ -876,6 +876,7 @@ public static void loadJournal(Env env, Long logId, JournalEntity journal) {
case OperationType.OP_MODIFY_COMMENT: {
ModifyCommentOperationLog operation = (ModifyCommentOperationLog) journal.getData();
env.getAlterInstance().replayModifyComment(operation);
env.getBinlogManager().addModifyComment(operation, logId);
break;
}
case OperationType.OP_SET_PARTITION_VERSION: {

0 comments on commit 5a0b6b1

Please sign in to comment.