| 156 | } |
| 157 | |
| 158 | Result<int64_t> Tell() const { |
| 159 | RETURN_NOT_OK(CheckClosed()); |
| 160 | return ::arrow::internal::FileTell(fd_.fd()); |
| 161 | } |
| 162 | |
| 163 | Status Write(const void* data, int64_t length) { |
| 164 | RETURN_NOT_OK(CheckClosed()); |
nothing calls this directly
no test coverage detected