pradeepgv42 commented on a change in pull request #6120: URL: https://github.com/apache/incubator-pinot/pull/6120#discussion_r524437432
########## File path: pinot-core/src/main/java/org/apache/pinot/core/indexsegment/mutable/MutableSegmentImpl.java ########## @@ -1063,12 +1072,14 @@ void updateMVEntry(int numValuesInMVEntry) { _textIndex = textIndex; _bloomFilter = bloomFilter; _nullValueVector = nullValueVector; + _fstIndexEnabled = fstIndexEnabled; } DataSource toDataSource() { return new MutableDataSource(_fieldSpec, _numDocsIndexed, _numValuesInfo._numValues, - _numValuesInfo._maxNumValuesPerMVEntry, _partitionFunction, _partitions, _minValue, _maxValue, _forwardIndex, - _dictionary, _invertedIndex, _rangeIndex, _textIndex, _bloomFilter, _nullValueVector); + _numValuesInfo._maxNumValuesPerMVEntry, _fstIndexEnabled, _partitionFunction, _partitions, _minValue, _maxValue, _forwardIndex, + _dictionary, _invertedIndex, _rangeIndex, _textIndex, null, Review comment: FST Index is currently not built for consuming segment, only when the segment is rolled out FST index is generated ---------------------------------------------------------------- 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. 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