@{ @name InputStream
| 167 | //@{ |
| 168 | // @name InputStream |
| 169 | Result<std::shared_ptr<const KeyValueMetadata>> ReadMetadata() override { |
| 170 | auto metadata = client_.GetObjectMetadata(path_.bucket, path_.object, generation_); |
| 171 | ARROW_GCS_RETURN_NOT_OK(metadata.status()); |
| 172 | return internal::FromObjectMetadata(*metadata); |
| 173 | } |
| 174 | //@} |
| 175 | |
| 176 | private: |
nothing calls this directly
no test coverage detected