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 2f33e12da4..d2ec28894a 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 indexIdToMeta = table.getIndexIdToMeta(); for (Map.Entry 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'."); }