gortiz commented on code in PR #10184: URL: https://github.com/apache/pinot/pull/10184#discussion_r1148961507
########## pinot-segment-spi/src/main/java/org/apache/pinot/segment/spi/index/creator/H3IndexConfig.java: ########## @@ -18,20 +18,38 @@ */ package org.apache.pinot.segment.spi.index.creator; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; import com.google.common.base.Preconditions; import java.util.ArrayList; import java.util.List; import java.util.Map; +import javax.annotation.Nullable; import org.apache.commons.lang3.StringUtils; import org.apache.pinot.segment.spi.index.reader.H3IndexResolution; +import org.apache.pinot.spi.config.table.IndexConfig; -public class H3IndexConfig { +public class H3IndexConfig extends IndexConfig { Review Comment: I tried to move as less as possible in order to do not add more changes (in this case, imports) to the PR. I think we can do that in another PR if needed -- 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