| 789 | } |
| 790 | |
| 791 | arrow::Result<int64_t> |
| 792 | ReadAt(int64_t position, int64_t n_bytes, void *out) override |
| 793 | { |
| 794 | return arrow::io::RandomAccessFile::ReadAt(position, n_bytes, out); |
| 795 | } |
| 796 | |
| 797 | arrow::Result<std::shared_ptr<arrow::Buffer>> |
| 798 | ReadAt(int64_t position, int64_t n_bytes) override |
no test coverage detected