From 6063b692dce479621971ef5a3590703f846c686b Mon Sep 17 00:00:00 2001 From: Felipe Oliveira Carvalho Date: Fri, 8 Dec 2023 17:05:14 -0300 Subject: [PATCH] Implement AzureFileSystem::DeleteRootDirContents --- cpp/src/arrow/filesystem/azurefs.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/arrow/filesystem/azurefs.cc b/cpp/src/arrow/filesystem/azurefs.cc index 9bd2b0ae9d8..41d65e832b4 100644 --- a/cpp/src/arrow/filesystem/azurefs.cc +++ b/cpp/src/arrow/filesystem/azurefs.cc @@ -1219,7 +1219,7 @@ Status AzureFileSystem::DeleteDirContents(const std::string& path, bool missing_ } Status AzureFileSystem::DeleteRootDirContents() { - return Status::NotImplemented("The Azure FileSystem is not fully implemented"); + return Status::NotImplemented("Cannot delete all Azure Blob Storage containers"); } Status AzureFileSystem::DeleteFile(const std::string& path) {