gavinchou commented on code in PR #33387:
URL: https://github.com/apache/doris/pull/33387#discussion_r1558737299


##########
fe/fe-core/src/main/java/org/apache/doris/catalog/Index.java:
##########
@@ -148,6 +148,14 @@ public Map<String, String> getInvertedIndexCharFilter() {
         return InvertedIndexUtil.getInvertedIndexCharFilter(properties);
     }
 
+    public boolean isLightIndexChangeSupported() {
+        if (indexType == IndexDef.IndexType.INVERTED) {
+            return true;
+        } else {
+            return false;
+        }

Review Comment:
   ```suggestion
           return indexType == IndexDef.IndexType.INVERTED;
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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

Reply via email to