Uses of Interface
org.apache.pinot.segment.spi.index.reader.ForwardIndexReaderContext
-
Packages that use ForwardIndexReaderContext Package Description org.apache.pinot.segment.spi.evaluator org.apache.pinot.segment.spi.index.mutable org.apache.pinot.segment.spi.index.reader -
-
Uses of ForwardIndexReaderContext in org.apache.pinot.segment.spi.evaluator
Methods in org.apache.pinot.segment.spi.evaluator with type parameters of type ForwardIndexReaderContext Modifier and Type Method Description <T extends ForwardIndexReaderContext>
voidTransformEvaluator. evaluateBlock(int[] docIds, int length, ForwardIndexReader<T> reader, T context, Dictionary dictionary, int[] dictIdBuffer, double[] valueBuffer)Evaluate the JSON path and fill the value buffer<T extends ForwardIndexReaderContext>
voidTransformEvaluator. evaluateBlock(int[] docIds, int length, ForwardIndexReader<T> reader, T context, Dictionary dictionary, int[] dictIdsBuffer, double[][] valueBuffer)Evaluate the JSON path and fill the value buffer<T extends ForwardIndexReaderContext>
voidTransformEvaluator. evaluateBlock(int[] docIds, int length, ForwardIndexReader<T> reader, T context, Dictionary dictionary, int[] dictIdBuffer, float[] valueBuffer)Evaluate the JSON path and fill the value buffer<T extends ForwardIndexReaderContext>
voidTransformEvaluator. evaluateBlock(int[] docIds, int length, ForwardIndexReader<T> reader, T context, Dictionary dictionary, int[] dictIdsBuffer, float[][] valueBuffer)Evaluate the JSON path and fill the value buffer<T extends ForwardIndexReaderContext>
voidTransformEvaluator. evaluateBlock(int[] docIds, int length, ForwardIndexReader<T> reader, T context, Dictionary dictionary, int[] dictIdBuffer, int[] valueBuffer)Evaluate the JSON path and fill the value buffer<T extends ForwardIndexReaderContext>
voidTransformEvaluator. evaluateBlock(int[] docIds, int length, ForwardIndexReader<T> reader, T context, Dictionary dictionary, int[] dictIdsBuffer, int[][] valueBuffer)Evaluate the JSON path and fill the value buffer<T extends ForwardIndexReaderContext>
voidTransformEvaluator. evaluateBlock(int[] docIds, int length, ForwardIndexReader<T> reader, T context, Dictionary dictionary, int[] dictIdBuffer, long[] valueBuffer)Evaluate the JSON path and fill the value buffer<T extends ForwardIndexReaderContext>
voidTransformEvaluator. evaluateBlock(int[] docIds, int length, ForwardIndexReader<T> reader, T context, Dictionary dictionary, int[] dictIdsBuffer, long[][] valueBuffer)Evaluate the JSON path and fill the value buffer<T extends ForwardIndexReaderContext>
voidTransformEvaluator. evaluateBlock(int[] docIds, int length, ForwardIndexReader<T> reader, T context, Dictionary dictionary, int[] dictIdBuffer, String[] valueBuffer)Evaluate the JSON path and fill the value buffer<T extends ForwardIndexReaderContext>
voidTransformEvaluator. evaluateBlock(int[] docIds, int length, ForwardIndexReader<T> reader, T context, Dictionary dictionary, int[] dictIdsBuffer, String[][] valueBuffer)Evaluate the JSON path and fill the value buffer<T extends ForwardIndexReaderContext>
voidTransformEvaluator. evaluateBlock(int[] docIds, int length, ForwardIndexReader<T> reader, T context, Dictionary dictionary, int[] dictIdBuffer, BigDecimal[] valueBuffer)Evaluate the JSON path and fill the value buffer -
Uses of ForwardIndexReaderContext in org.apache.pinot.segment.spi.index.mutable
Methods in org.apache.pinot.segment.spi.index.mutable with parameters of type ForwardIndexReaderContext Modifier and Type Method Description default BigDecimalMutableForwardIndex. getBigDecimal(int docId, ForwardIndexReaderContext context)default byte[]MutableForwardIndex. getBytes(int docId, ForwardIndexReaderContext context)default intMutableForwardIndex. getBytesMV(int docId, byte[][] valueBuffer, ForwardIndexReaderContext context)default byte[][]MutableForwardIndex. getBytesMV(int docId, ForwardIndexReaderContext context)default intMutableForwardIndex. getDictId(int docId, ForwardIndexReaderContext context)default intMutableForwardIndex. getDictIdMV(int docId, int[] dictIdBuffer, ForwardIndexReaderContext context)default int[]MutableForwardIndex. getDictIdMV(int docId, ForwardIndexReaderContext context)default doubleMutableForwardIndex. getDouble(int docId, ForwardIndexReaderContext context)default intMutableForwardIndex. getDoubleMV(int docId, double[] valueBuffer, ForwardIndexReaderContext context)default double[]MutableForwardIndex. getDoubleMV(int docId, ForwardIndexReaderContext context)default floatMutableForwardIndex. getFloat(int docId, ForwardIndexReaderContext context)default intMutableForwardIndex. getFloatMV(int docId, float[] valueBuffer, ForwardIndexReaderContext context)default float[]MutableForwardIndex. getFloatMV(int docId, ForwardIndexReaderContext context)default intMutableForwardIndex. getInt(int docId, ForwardIndexReaderContext context)default intMutableForwardIndex. getIntMV(int docId, int[] valueBuffer, ForwardIndexReaderContext context)default int[]MutableForwardIndex. getIntMV(int docId, ForwardIndexReaderContext context)default longMutableForwardIndex. getLong(int docId, ForwardIndexReaderContext context)default intMutableForwardIndex. getLongMV(int docId, long[] valueBuffer, ForwardIndexReaderContext context)default long[]MutableForwardIndex. getLongMV(int docId, ForwardIndexReaderContext context)default intMutableForwardIndex. getNumValuesMV(int docId, ForwardIndexReaderContext context)default StringMutableForwardIndex. getString(int docId, ForwardIndexReaderContext context)default intMutableForwardIndex. getStringMV(int docId, String[] valueBuffer, ForwardIndexReaderContext context)default String[]MutableForwardIndex. getStringMV(int docId, ForwardIndexReaderContext context)default voidMutableForwardIndex. readDictIds(int[] docIds, int length, int[] dictIdBuffer, ForwardIndexReaderContext context) -
Uses of ForwardIndexReaderContext in org.apache.pinot.segment.spi.index.reader
Classes in org.apache.pinot.segment.spi.index.reader with type parameters of type ForwardIndexReaderContext Modifier and Type Interface Description interfaceForwardIndexReader<T extends ForwardIndexReaderContext>Interface for forward index reader.interfaceSortedIndexReader<T extends ForwardIndexReaderContext>Interface for sorted index reader which can be used as both forward index and inverted index.
-