| 711 | } |
| 712 | |
| 713 | Result<std::shared_ptr<io::OutputStream>> LocalFileSystem::OpenAppendStream( |
| 714 | const std::string& path, const std::shared_ptr<const KeyValueMetadata>& metadata) { |
| 715 | bool truncate = false; |
| 716 | bool append = true; |
| 717 | return OpenOutputStreamGeneric(path, truncate, append); |
| 718 | } |
| 719 | |
| 720 | static Result<std::shared_ptr<fs::FileSystem>> LocalFileSystemFactory( |
| 721 | const arrow::util::Uri& uri, const io::IOContext& io_context, std::string* out_path) { |
nothing calls this directly
no test coverage detected