Skip to content

Commit 1db6052

Browse files
committed
fix build
1 parent f70c53f commit 1db6052

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
@@ -289,9 +289,12 @@ class IObjectStorage
289289
virtual String getObjectsNamespace() const = 0;
290290

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

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

0 commit comments

Comments
 (0)