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