xiangfu0 commented on code in PR #17032:
URL: https://github.com/apache/pinot/pull/17032#discussion_r2449844061


##########
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/indexsegment/immutable/ImmutableSegmentLoader.java:
##########
@@ -98,15 +110,15 @@ public static ImmutableSegment load(File indexDir, 
IndexLoadingConfig indexLoadi
    */
   public static ImmutableSegment load(File indexDir, IndexLoadingConfig 
indexLoadingConfig, boolean needPreprocess)
       throws Exception {
-    return load(indexDir, indexLoadingConfig, needPreprocess, null);
+    return load(indexDir, indexLoadingConfig, needPreprocess, null, null);
   }
 
   /**
    * Loads the segment with specified schema and IndexLoadingConfig, and 
allows to control whether to
    * modify the segment like to convert segment format, add or remove indices.
    */
   public static ImmutableSegment load(File indexDir, IndexLoadingConfig 
indexLoadingConfig, boolean needPreprocess,
-      @Nullable SegmentOperationsThrottler segmentOperationsThrottler)
+      @Nullable SegmentOperationsThrottler segmentOperationsThrottler, 
SegmentZKMetadata zkMetadata)

Review Comment:
   `@Nullable  SegmentZKMetadata zkMetadata`



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