| 406 | } |
| 407 | |
| 408 | Status Disconnect() { |
| 409 | int ret = driver_->Disconnect(fs_); |
| 410 | CHECK_FAILURE(ret, "hdfsFS::Disconnect"); |
| 411 | return Status::OK(); |
| 412 | } |
| 413 | |
| 414 | bool Exists(const std::string& path) { |
| 415 | // hdfsExists does not distinguish between RPC failure and the file not |
nothing calls this directly
no test coverage detected