| 319 | |
| 320 | private: |
| 321 | Status InitializeStream() const { |
| 322 | if (!stream_) { |
| 323 | ARROW_ASSIGN_OR_RAISE(stream_, factory_(gcs::Generation(metadata_.generation()), |
| 324 | gcs::ReadRange(), gcs::ReadFromOffset())); |
| 325 | } |
| 326 | return Status::OK(); |
| 327 | } |
| 328 | InputStreamFactory factory_; |
| 329 | gcs::ObjectMetadata metadata_; |
| 330 | std::shared_ptr<GcsInputStream> mutable stream_; |
nothing calls this directly
no test coverage detected