| 674 | } // namespace |
| 675 | |
| 676 | Result<std::shared_ptr<io::InputStream>> LocalFileSystem::OpenInputStream( |
| 677 | const std::string& path) { |
| 678 | return OpenInputStreamGeneric<io::InputStream>(path, options_, io_context()); |
| 679 | } |
| 680 | |
| 681 | Result<std::shared_ptr<io::RandomAccessFile>> LocalFileSystem::OpenInputFile( |
| 682 | const std::string& path) { |
nothing calls this directly
no test coverage detected