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 f70c53f commit 1db6052Copy full SHA for 1db6052
src/Disks/ObjectStorages/IObjectStorage.h
@@ -289,9 +289,12 @@ class IObjectStorage
289
virtual String getObjectsNamespace() const = 0;
290
291
virtual std::unique_ptr<IObjectStorage> cloneObjectStorage(
292
- const std::string & new_namespace,
293
- const Poco::Util::AbstractConfiguration & config,
294
- const std::string & config_prefix, ContextPtr context) = 0;
+ const std::string &,
+ const Poco::Util::AbstractConfiguration &,
+ const std::string &, ContextPtr)
295
+ {
296
+ throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Method 'cloneObjectStorage' is not implemented");
297
+ }
298
299
/// Generate blob name for passed absolute local path.
300
/// Path can be generated either independently or based on `path`.
0 commit comments