| 163 | } |
| 164 | |
| 165 | Result<int64_t> Tell() const { |
| 166 | RETURN_NOT_OK(CheckClosed()); |
| 167 | return ::arrow::internal::FileTell(fd_.fd()); |
| 168 | } |
| 169 | |
| 170 | Status Write(const void* data, int64_t length) { |
| 171 | RETURN_NOT_OK(CheckClosed()); |
nothing calls this directly
no test coverage detected