englefly commented on code in PR #34169:
URL: https://github.com/apache/doris/pull/34169#discussion_r1581998923


##########
fe/fe-core/src/main/java/org/apache/doris/nereids/hint/LeadingHint.java:
##########
@@ -124,6 +124,32 @@ public LeadingHint(String hintName, List<String> 
parameters, String originalStri
             }
             lastParameter = parameter;
         }
+        normalizeLevelList();
+    }
+
+    private void removeGap(int left, int right, int gap) {
+        for (int i = left; i <= right; i++) {
+            levellist.set(i, levellist.get(i) - (gap - 1));

Review Comment:
   levellist => levelList



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to