| 704 | } // namespace |
| 705 | |
| 706 | Result<std::shared_ptr<io::OutputStream>> LocalFileSystem::OpenOutputStream( |
| 707 | const std::string& path, const std::shared_ptr<const KeyValueMetadata>& metadata) { |
| 708 | bool truncate = true; |
| 709 | bool append = false; |
| 710 | return OpenOutputStreamGeneric(path, truncate, append); |
| 711 | } |
| 712 | |
| 713 | Result<std::shared_ptr<io::OutputStream>> LocalFileSystem::OpenAppendStream( |
| 714 | const std::string& path, const std::shared_ptr<const KeyValueMetadata>& metadata) { |
nothing calls this directly
no test coverage detected