RajaVinoth96 commented on code in PR #18751:
URL: https://github.com/apache/pinot/pull/18751#discussion_r3487592526
##########
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/index/range/RangeIndexType.java:
##########
@@ -97,6 +96,19 @@ public void validate(FieldIndexConfigs indexConfigs,
FieldSpec fieldSpec, TableC
"Cannot create range index version %s on column: %s with RAW forward
index and dictionary; "
+ "use BitSliced range index version %s instead",
RangeIndexCreator.VERSION, column,
BitSlicedRangeIndexCreator.VERSION);
+ for (IndexType indexType : List.of(
+ StandardIndexes.bloomFilter(),
+ StandardIndexes.inverted(),
+ StandardIndexes.vector(),
+ StandardIndexes.json(),
+ StandardIndexes.text(),
+ StandardIndexes.fst(),
+ StandardIndexes.h3(),
+ StandardIndexes.ifst())) {
Review Comment:
Inverted and range indexes dont make sense together.
--
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]