gortiz commented on code in PR #11824: URL: https://github.com/apache/pinot/pull/11824#discussion_r1381249416
########## pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/index/nullvalue/NullValueIndexType.java: ########## @@ -77,11 +81,24 @@ public String getPrettyName() { @Override public ColumnConfigDeserializer<IndexConfig> createDeserializer() { - return IndexConfigDeserializer.ifIndexingConfig( - IndexConfigDeserializer.alwaysCall((TableConfig tableConfig, Schema schema) -> - tableConfig.getIndexingConfig().isNullHandlingEnabled() - ? IndexConfig.ENABLED - : IndexConfig.DISABLED)); + return (TableConfig tableConfig, Schema schema) -> { Review Comment: Yesterday @walterddr and I were discussing about this PR. We think that https://github.com/apache/pinot/pull/11935 is a better approach given it doesn't need to modify how to load the index. The changes there are very trivial (changing from storing `boolean _enableNullHandling` with `NullMode _nullMode`). The main issue is that the null handling code is not well organized and very repetitive, so I ended up modifying more than 1k lines. But we think we are going to be focused on that PR instead of this one. What are your thoughts? -- 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