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 4d52f661626 [fix](editlog) add column rename binlog during the replay
(#43012)
4d52f661626 is described below
commit 4d52f661626c56cbdc9fabc2837178325d283cf8
Author: walter <[email protected]>
AuthorDate: Thu Oct 31 21:13:57 2024 +0800
[fix](editlog) add column rename binlog during the replay (#43012)
This was introduced in #39782
---
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 ebdc574cb11..5f94c95a249 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
@@ -323,6 +323,7 @@ public class EditLog {
case OperationType.OP_RENAME_COLUMN: {
TableRenameColumnInfo info = (TableRenameColumnInfo)
journal.getData();
env.replayRenameColumn(info);
+ env.getBinlogManager().addColumnRename(info, logId);
break;
}
case OperationType.OP_BACKUP_JOB: {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]