siddharthteotia commented on a change in pull request #6625: URL: https://github.com/apache/incubator-pinot/pull/6625#discussion_r589655642
########## File path: pinot-controller/src/main/java/org/apache/pinot/controller/recommender/rules/io/configs/IndexConfig.java ########## @@ -80,6 +80,10 @@ public boolean isSortedColumnOverwritten() { return _isSortedColumnOverwritten; } + public void setSortedColumnOverwritten(boolean sortedColumnOverwritten) { Review comment: This should not be needed. Already covered in ``` @JsonSetter(nulls = Nulls.SKIP) public void setSortedColumn(String sortedColumn) { this._sortedColumn = sortedColumn; this._isSortedColumnOverwritten = true; } ``` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org