Skip to content

Commit 6a5e02e

Browse files
committed
fix build
1 parent c4629d5 commit 6a5e02e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/Disks/ObjectStorages/IObjectStorage.h

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,12 @@ class IObjectStorage
290290
virtual String getObjectsNamespace() const = 0;
291291

292292
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;
293+
const std::string &,
294+
const Poco::Util::AbstractConfiguration &,
295+
const std::string &, ContextPtr)
296+
{
297+
throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Method 'cloneObjectStorage' is not implemented");
298+
}
296299

297300
/// Generate blob name for passed absolute local path.
298301
/// Path can be generated either independently or based on `path`.

0 commit comments

Comments
 (0)