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

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

commit 53639a01fed35b0a57420cc6e8eb787851e09926
Author: Luwei <814383...@qq.com>
AuthorDate: Thu Jan 11 20:25:06 2024 +0800

    [Fix] (schema change) fix the bug that non light schema change tables can 
rename column (#29850)
---
 fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java 
b/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
index 2f33e12da47..d2ec28894af 100755
--- a/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
@@ -4553,7 +4553,7 @@ public class Env {
         Map<Long, MaterializedIndexMeta> indexIdToMeta = 
table.getIndexIdToMeta();
         for (Map.Entry<Long, MaterializedIndexMeta> entry : 
indexIdToMeta.entrySet()) {
             // rename column is not implemented for table without column 
unique id.
-            if (entry.getValue().getMaxColUniqueId() < 0) {
+            if (entry.getValue().getMaxColUniqueId() <= 0) {
                 throw new DdlException("not implemented for table without 
column unique id,"
                         + " which are created with property 
'light_schema_change'.");
             }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to