Package org.apache.iceberg.orc
Interface OrcRowReader<T>
-
- All Known Implementing Classes:
FlinkOrcReader
,GenericOrcReader
,SparkOrcReader
public interface OrcRowReader<T>
Used for implementing ORC row readers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
read(org.apache.orc.storage.ql.exec.vector.VectorizedRowBatch batch, int row)
Reads a row.void
setBatchContext(long batchOffsetInFile)
-
-
-
Method Detail
-
read
T read(org.apache.orc.storage.ql.exec.vector.VectorizedRowBatch batch, int row)
Reads a row.
-
setBatchContext
void setBatchContext(long batchOffsetInFile)
-
-