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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]