| 661 | } |
| 662 | |
| 663 | Status MemoryMappedFile::Seek(int64_t position) { |
| 664 | RETURN_NOT_OK(memory_map_->CheckClosed()); |
| 665 | return memory_map_->Seek(position); |
| 666 | } |
| 667 | |
| 668 | Status MemoryMappedFile::Close() { return memory_map_->Close(); } |
| 669 |
no test coverage detected