mayankshriv commented on code in PR #15206:
URL: https://github.com/apache/pinot/pull/15206#discussion_r1982754431
##########
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/index/loader/ForwardIndexHandler.java:
##########
@@ -204,7 +205,11 @@ Map<String, List<Operation>>
computeOperations(SegmentDirectory.Reader segmentRe
for (String column : existingAllColumns) {
if (_schema != null && !_schema.hasColumn(column)) {
// _schema will be null only in tests
- LOGGER.info("Column: {} of segment: {} is not in schema, skipping
updating forward index", column, segmentName);
+ if
(!CommonConstants.Segment.BuiltInVirtualColumn.ALL_COLUMNS.contains(column)) {
Review Comment:
May be just remove these from `existingAllColumns`, or use filtered version
of for loop at 205.
--
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]