This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-4.1 by this push:
     new 9f5480e45a2 branch-4.1: [fix](cloud) Skip unnecessary update tablet to 
ms when alter table property #65983 (#66256)
9f5480e45a2 is described below

commit 9f5480e45a2e5e4aef2ecb8d2e1aaea78c5a182b
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 31 16:06:11 2026 +0800

    branch-4.1: [fix](cloud) Skip unnecessary update tablet to ms when alter 
table property #65983 (#66256)
    
    Cherry-picked from #65983
    
    Co-authored-by: meiyi <[email protected]>
---
 .../java/org/apache/doris/cloud/alter/CloudSchemaChangeHandler.java   | 4 ----
 1 file changed, 4 deletions(-)

diff --git 
a/fe/fe-core/src/main/java/org/apache/doris/cloud/alter/CloudSchemaChangeHandler.java
 
b/fe/fe-core/src/main/java/org/apache/doris/cloud/alter/CloudSchemaChangeHandler.java
index 47e6fbf0cbe..1bbe616de8d 100644
--- 
a/fe/fe-core/src/main/java/org/apache/doris/cloud/alter/CloudSchemaChangeHandler.java
+++ 
b/fe/fe-core/src/main/java/org/apache/doris/cloud/alter/CloudSchemaChangeHandler.java
@@ -169,7 +169,6 @@ public class CloudSchemaChangeHandler extends 
SchemaChangeHandler {
                             groupCommitMode, olapTable.getGroupCommitMode());
                     return;
                 }
-                partitions.addAll(olapTable.getPartitions());
             } finally {
                 olapTable.readUnlock();
             }
@@ -184,7 +183,6 @@ public class CloudSchemaChangeHandler extends 
SchemaChangeHandler {
                             groupCommitIntervalMs, 
olapTable.getGroupCommitIntervalMs());
                     return;
                 }
-                partitions.addAll(olapTable.getPartitions());
             } finally {
                 olapTable.readUnlock();
             }
@@ -199,7 +197,6 @@ public class CloudSchemaChangeHandler extends 
SchemaChangeHandler {
                             groupCommitDataBytes, 
olapTable.getGroupCommitDataBytes());
                     return;
                 }
-                partitions.addAll(olapTable.getPartitions());
             } finally {
                 olapTable.readUnlock();
             }
@@ -362,7 +359,6 @@ public class CloudSchemaChangeHandler extends 
SchemaChangeHandler {
                     throw new UserException("enable_mow_light_delete property 
is "
                             + "not supported for unique merge-on-read table");
                 }
-                partitions.addAll(olapTable.getPartitions());
             } finally {
                 olapTable.readUnlock();
             }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to