We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d420fa7 commit 9230660Copy full SHA for 9230660
cpp/src/arrow/filesystem/gcsfs.cc
@@ -957,6 +957,11 @@ Result<std::shared_ptr<io::OutputStream>> GcsFileSystem::OpenOutputStream(
957
return impl_->OpenOutputStream(p, metadata);
958
}
959
960
+Result<std::shared_ptr<io::OutputStream>> GcsFileSystem::OpenAppendStream(
961
+ const std::string&, const std::shared_ptr<const KeyValueMetadata>&) {
962
+ return Status::NotImplemented("Append is not supported in GCS");
963
+}
964
+
965
Result<std::shared_ptr<GcsFileSystem>> GcsFileSystem::Make(
966
const GcsOptions& options, const io::IOContext& io_context) {
967
// Cannot use `std::make_shared<>` as the constructor is private.
0 commit comments