jroddev commented on issue #6581:
URL: https://github.com/apache/arrow-rs/issues/6581#issuecomment-2425330449

   @Xuanwo thank you, that was the issue.
   Because file reader is async the seek call needed to be awaited on.
   ```
   - let _ = file.seek(io::SeekFrom::Start(range.start as u64));
   + let _ = file.seek(io::SeekFrom::Start(range.start as u64)).await;
   ```


-- 
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: github-unsubscr...@arrow.apache.org

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

Reply via email to