This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new c20eb9ba590 [fix](binlog) add modify comment binlog when replaying
journal (#43827)
c20eb9ba590 is described below
commit c20eb9ba59040a1277438b376e237a108bed775d
Author: walter <[email protected]>
AuthorDate: Thu Nov 14 21:02:07 2024 +0800
[fix](binlog) add modify comment binlog when replaying journal (#43827)
This issue is introduced in #39783
---
fe/fe-core/src/main/java/org/apache/doris/persist/EditLog.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/fe/fe-core/src/main/java/org/apache/doris/persist/EditLog.java
b/fe/fe-core/src/main/java/org/apache/doris/persist/EditLog.java
index e5983dc6781..df0cdb092a8 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/persist/EditLog.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/persist/EditLog.java
@@ -877,6 +877,7 @@ public class EditLog {
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: {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]