gortiz commented on code in PR #10184: URL: https://github.com/apache/pinot/pull/10184#discussion_r1154086695
########## pinot-segment-spi/src/main/java/org/apache/pinot/segment/spi/index/creator/CombinedInvertedIndexCreator.java: ########## @@ -18,6 +18,80 @@ */ package org.apache.pinot.segment.spi.index.creator; +import javax.annotation.Nonnull; +import javax.annotation.Nullable; +import org.apache.pinot.spi.data.FieldSpec; + + +/** + * This is the index used to create range indexes Review Comment: I think that's the reason why I added the comment, because each time I arrived on this class I didn't remember it was related to range indexes instead of inverted :laughing: -- 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]
