| 306 | } |
| 307 | |
| 308 | bool GetPathInfo(const std::string& path, io::HdfsPathInfo* info) { |
| 309 | return client_->GetPathInfo(path, info).ok(); |
| 310 | } |
| 311 | |
| 312 | TimePoint ToTimePoint(int secs) { |
| 313 | std::chrono::nanoseconds ns_count(static_cast<int64_t>(secs) * 1000000000); |
no test coverage detected