SteveYurongSu commented on code in PR #11478:
URL: https://github.com/apache/iotdb/pull/11478#discussion_r1388009516


##########
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/consensus/index/impl/MinimumProgressIndex.java:
##########
@@ -79,6 +81,11 @@ public ProgressIndexType getType() {
     return ProgressIndexType.MINIMUM_PROGRESS_INDEX;
   }
 
+  @Override
+  public TotalOrderSumTuple getTotalOrderSumTuple() {
+    return new TotalOrderSumTuple();
+  }
+

Review Comment:
   ```suggestion
     @Override
     public TotalOrderSumTuple getTotalOrderSumTuple() {
       return TOTAL_ORDER_SUM_TUPLE;
     }
     
     public static final MinimumProgressIndex INSTANCE = new 
MinimumProgressIndex();
     
     private static final TotalOrderSumTuple TOTAL_ORDER_SUM_TUPLE = new 
TotalOrderSumTuple();
   ```



-- 
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]

Reply via email to