dongjoon-hyun commented on a change in pull request #674:
URL: https://github.com/apache/orc/pull/674#discussion_r608037472



##########
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);
+  }
 
   public OrcMapreduceRecordReader(Reader fileReader,
-                                  Reader.Options options) throws IOException {
+                                  Reader.Options options, int rowBatchSize) 
throws IOException {

Review comment:
       Let's put `rowBatchSize` in a new line like the following.
   ```java
   Reader fileReader,
   Reader.Options options,
   int rowBatchSize) throws IOException {
   ```




-- 
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]


Reply via email to