You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@orc.apache.org by GitBox <gi...@apache.org> on 2021/08/15 23:51:48 UTC

[GitHub] [orc] williamhyun commented on a change in pull request #865: ORC-952: Add `since` tag to `org.apache.orc.RecordReader` interface

williamhyun commented on a change in pull request #865:
URL: https://github.com/apache/orc/pull/865#discussion_r689162093



##########
File path: java/core/src/java/org/apache/orc/RecordReader.java
##########
@@ -42,19 +44,22 @@
    * call to next().
    * @return the row number from 0 to the number of rows in the file
    * @throws java.io.IOException
+   * @since 1.1.0
    */
   long getRowNumber() throws IOException;
 
   /**
    * Get the progress of the reader through the rows.
    * @return a fraction between 0.0 and 1.0 of rows read
    * @throws java.io.IOException
+   * @since 1.1.0
    */
   float getProgress() throws IOException;
 
   /**
    * Release the resources associated with the given reader.
    * @throws java.io.IOException
+   * @since 1.1.0
    */
   @Override
   void close() throws IOException;

Review comment:
       Could you add the tag to `seekToRow`?




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

To unsubscribe, e-mail: dev-unsubscribe@orc.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org