pavibhai commented on a change in pull request #668:
URL: https://github.com/apache/orc/pull/668#discussion_r641048200



##########
File path: java/core/src/java/org/apache/orc/impl/reader/tree/TypeReader.java
##########
@@ -24,22 +25,70 @@
 import org.apache.orc.impl.reader.StripePlanner;
 
 import java.io.IOException;
+import java.util.EnumSet;
 
 public interface TypeReader {
   void checkEncoding(OrcProto.ColumnEncoding encoding) throws IOException;
 
-  void startStripe(StripePlanner planner) throws IOException;
+  void startStripe(StripePlanner planner, ReadPhase readPhase) throws 
IOException;
 
-  void seek(PositionProvider[] index) throws IOException;
+  void seek(PositionProvider[] index, ReadPhase readPhase) throws IOException;
 
-  void seek(PositionProvider index) throws IOException;
+  void seek(PositionProvider index, ReadPhase readPhase) throws IOException;
 
-  void skipRows(long rows) throws IOException;
+  void skipRows(long rows, ReadPhase readPhase) throws IOException;
 
   void nextVector(ColumnVector previous,
                   boolean[] isNull,
                   int batchSize,
-                  FilterContext filterContext) throws IOException;
+                  FilterContext filterContext,
+                  ReadPhase readPhase) throws IOException;
 
   int getColumnId();

Review comment:
       Sure. This was not added as part of this PR. I can raise a separate PR 
to remove this or include the removal here. I did notice that but didn't want 
to include it here.




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