vvivekiyer commented on code in PR #9868: URL: https://github.com/apache/pinot/pull/9868#discussion_r1035612188
########## pinot-core/src/test/java/org/apache/pinot/queries/ForwardIndexHandlerReloadQueriesTest.java: ########## @@ -644,12 +737,15 @@ private void changePropertiesAndReloadSegment() invertedIndexEnabledColumns.add("column2"); invertedIndexEnabledColumns.add("column7"); indexLoadingConfig.setInvertedIndexColumns(invertedIndexEnabledColumns); + indexLoadingConfig.getInvertedIndexColumns().remove("column9"); Set<String> noDictionaryColumns = new HashSet<>(_noDictionaryColumns); indexLoadingConfig.setNoDictionaryColumns(noDictionaryColumns); indexLoadingConfig.getNoDictionaryColumns().remove("column2"); indexLoadingConfig.getNoDictionaryColumns().remove("column3"); indexLoadingConfig.getNoDictionaryColumns().remove("column7"); indexLoadingConfig.getNoDictionaryColumns().remove("column10"); + indexLoadingConfig.getNoDictionaryColumns().add("column6"); + indexLoadingConfig.getNoDictionaryColumns().add("column9"); Review Comment: Yes. That's already there in TableConfigUtils. https://github.com/apache/pinot/blob/a22250270da250b03943624eae2a9466164b864c/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/TableConfigUtils.java#L699 -- 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: commits-unsubscr...@pinot.apache.org 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