Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/Storages/ObjectStorage/DataLakes/IDataLakeMetadata.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,15 @@ class IDataLakeMetadata : boost::noncopyable
ContextPtr /*context*/,
const StorageID & /*storage_id*/,
std::shared_ptr<DataLake::ICatalog> /*catalog*/) { throwNotImplemented("alter"); }
virtual bool supportsDropPartition() const { return false; }
virtual void dropPartition(
const ASTPtr & /* partition */,
ContextPtr /* context */,
std::shared_ptr<DataLake::ICatalog> /* catalog */,
const StorageID & /* storage_id */)
{
throwNotImplemented("dropPartition");
}

virtual Pipe executeCommand(
const String & command_name,
Expand Down
Loading
Loading