We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4629d5 commit 6a5e02eCopy full SHA for 6a5e02e
src/Disks/ObjectStorages/IObjectStorage.h
@@ -290,9 +290,12 @@ class IObjectStorage
290
virtual String getObjectsNamespace() const = 0;
291
292
virtual std::unique_ptr<IObjectStorage> cloneObjectStorage(
293
- const std::string & new_namespace,
294
- const Poco::Util::AbstractConfiguration & config,
295
- const std::string & config_prefix, ContextPtr context) = 0;
+ const std::string &,
+ const Poco::Util::AbstractConfiguration &,
+ const std::string &, ContextPtr)
296
+ {
297
+ throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Method 'cloneObjectStorage' is not implemented");
298
+ }
299
300
/// Generate blob name for passed absolute local path.
301
/// Path can be generated either independently or based on `path`.
0 commit comments