Package org.apache.iceberg.orc
Interface OrcValueWriter<T>
-
- All Known Implementing Classes:
GenericOrcWriter,SparkOrcWriter
public interface OrcValueWriter<T>Write data value of a schema.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwrite(T value, org.apache.orc.storage.ql.exec.vector.VectorizedRowBatch output)Writes the data.
-
-
-
Method Detail
-
write
void write(T value, org.apache.orc.storage.ql.exec.vector.VectorizedRowBatch output) throws java.io.IOException
Writes the data.- Parameters:
value- the data value to write.output- the VectorizedRowBatch to which the output will be written.- Throws:
java.io.IOException- if there's any IO error while writing the data value.
-
-