hrbeuyz24 commented on issue #2084:
URL: https://github.com/apache/orc/issues/2084#issuecomment-2538309911

   like this in SeekToRow function
   ```
   auto targetRowInStrip = rowNumber - firstRowOfStripe_[seekToStripe];
   if (currentStripe_ == seekToStripe &&
        isCurrentStripeInited() &&
        currentRowInStripe_ < targetRowInStrip &&
        currentRowInStripe_ / rowIndexStrice ==  targetRowInStripe / 
rowIndexStrice) {
     reader_->skip(targetRowInStrip - currentRowInStripe_);
     currentRowInStripe = targetRowInStrip;
     return;
   }
   ```


-- 
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: issues-unsubscr...@orc.apache.org

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

Reply via email to