richardstartin commented on a change in pull request #7820: URL: https://github.com/apache/pinot/pull/7820#discussion_r762851291
########## File path: pinot-core/src/main/java/org/apache/pinot/core/common/DataFetcher.java ########## @@ -559,12 +744,21 @@ void readStringValuesMV(int[] docIds, int length, String[][] valuesBuffer) { } } + void readStringValuesMV(TransformEvaluator evaluator, int[] docIds, int length, String[][] valuesBuffer) { + evaluator.evaluateBlock(docIds, length, _reader, getReaderContext(), _dictionary, getSVDictIdsBuffer(), + valuesBuffer); + } + public void readNumValuesMV(int[] docIds, int length, int[] numValuesBuffer) { for (int i = 0; i < length; i++) { - numValuesBuffer[i] = _reader.getDictIdMV(docIds[i], _reusableMVDictIds, getReaderContext()); + numValuesBuffer[i] = _reader.getDictIdMV(docIds[i], getSVDictIdsBuffer(), getReaderContext()); Review comment: good catch, this was an unintentional change made during the churn -- 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