| 903 | } |
| 904 | |
| 905 | Result<std::shared_ptr<io::InputStream>> GcsFileSystem::OpenInputStream( |
| 906 | const std::string& path) { |
| 907 | ARROW_RETURN_NOT_OK(internal::AssertNoTrailingSlash(path)); |
| 908 | ARROW_ASSIGN_OR_RAISE(auto p, GcsPath::FromString(path)); |
| 909 | return impl_->OpenInputStream(p, gcs::Generation(), gcs::ReadRange(), |
| 910 | gcs::ReadFromOffset()); |
| 911 | } |
| 912 | |
| 913 | Result<std::shared_ptr<io::InputStream>> GcsFileSystem::OpenInputStream( |
| 914 | const FileInfo& info) { |
no test coverage detected