wgtmac commented on code in PR #2005:
URL: https://github.com/apache/orc/pull/2005#discussion_r1759656589
##########
c++/include/orc/Reader.hh:
##########
@@ -657,6 +657,12 @@ namespace orc {
* @param rowNumber the next row the reader should return
*/
virtual void seekToRow(uint64_t rowNumber) = 0;
+
+ /**
+ * Get the current stripe position entries for the specified column.
+ * @return the position entries for the specified column.
+ */
+ virtual std::vector<std::vector<int>>
getCurrentStripePositionEntries(uint64_t columnId) = 0;
Review Comment:
I'd suggest to do this all at once. If we don't change it in time, the
public API will get released and we cannot change it any more.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]