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


##########
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/index/loader/IndexLoadingConfig.java:
##########
@@ -337,6 +340,14 @@ public void setErrorOnColumnBuildFailure(boolean 
errorOnColumnBuildFailure) {
     _errorOnColumnBuildFailure = errorOnColumnBuildFailure;
   }
 
+  public void setEnablePreProcess(boolean enablePreProcess) {
+    _enableSegmentPreprocess = enablePreProcess;
+  }
+
+  public boolean isEnablePreProcess() {
+    return _enableSegmentPreprocess;
+  }
+

Review Comment:
   it will be set in the `init()` method so cannot use final unless we 
explicitly set this field 



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