| 265 | } |
| 266 | |
| 267 | Result<std::shared_ptr<io::OutputStream>> OpenAppendStream(const std::string& path) { |
| 268 | bool append = true; |
| 269 | return OpenOutputStreamGeneric(path, append); |
| 270 | } |
| 271 | |
| 272 | protected: |
| 273 | const HdfsOptions options_; |
nothing calls this directly
no test coverage detected