Skip to content

Commit

Permalink
[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
  • Loading branch information
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
Expand Up @@ -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: {
Expand Down

0 comments on commit 5a0b6b1

Please sign in to comment.