dongjoon-hyun commented on a change in pull request #674:
URL: https://github.com/apache/orc/pull/674#discussion_r603812715
##########
File path:
java/mapreduce/src/java/org/apache/orc/mapreduce/OrcMapreduceRecordReader.java
##########
@@ -53,16 +53,20 @@ public OrcMapreduceRecordReader(RecordReader reader,
rowInBatch = 0;
this.row = (V) OrcStruct.createValue(schema);
}
+ public OrcMapreduceRecordReader(Reader fileReader,
+ Reader.Options options) throws IOException {
+ this(fileReader, options, VectorizedRowBatch.DEFAULT_SIZE);
Review comment:
Is there a reason why we use `DEFAULT_SIZE`, a fixed value?
--
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:
[email protected]