| 218 | } |
| 219 | |
| 220 | Result<std::shared_ptr<io::RandomAccessFile>> FileSystem::OpenInputFile( |
| 221 | const FileInfo& info) { |
| 222 | RETURN_NOT_OK(ValidateInputFileInfo(info)); |
| 223 | return OpenInputFile(info.path()); |
| 224 | } |
| 225 | |
| 226 | Future<std::shared_ptr<io::InputStream>> FileSystem::OpenInputStreamAsync( |
| 227 | const std::string& path) { |
no test coverage detected