summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/tenant_migration_recipient_op_observer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/tenant_migration_recipient_op_observer.h')
-rw-r--r--src/mongo/db/repl/tenant_migration_recipient_op_observer.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mongo/db/repl/tenant_migration_recipient_op_observer.h b/src/mongo/db/repl/tenant_migration_recipient_op_observer.h
index fa3a2ac1973..fe7178819d6 100644
--- a/src/mongo/db/repl/tenant_migration_recipient_op_observer.h
+++ b/src/mongo/db/repl/tenant_migration_recipient_op_observer.h
@@ -48,13 +48,13 @@ public:
void onCreateIndex(OperationContext* opCtx,
const NamespaceString& nss,
- CollectionUUID uuid,
+ const UUID& uuid,
BSONObj indexDoc,
bool fromMigrate) final {}
void onStartIndexBuild(OperationContext* opCtx,
const NamespaceString& nss,
- CollectionUUID collUUID,
+ const UUID& collUUID,
const UUID& indexBuildUUID,
const std::vector<BSONObj>& indexes,
bool fromMigrate) final {}
@@ -65,14 +65,14 @@ public:
void onCommitIndexBuild(OperationContext* opCtx,
const NamespaceString& nss,
- CollectionUUID collUUID,
+ const UUID& collUUID,
const UUID& indexBuildUUID,
const std::vector<BSONObj>& indexes,
bool fromMigrate) final {}
void onAbortIndexBuild(OperationContext* opCtx,
const NamespaceString& nss,
- CollectionUUID collUUID,
+ const UUID& collUUID,
const UUID& indexBuildUUID,
const std::vector<BSONObj>& indexes,
const Status& cause,
@@ -100,7 +100,7 @@ public:
void onInternalOpMessage(OperationContext* opCtx,
const NamespaceString& nss,
- OptionalCollectionUUID uuid,
+ const boost::optional<UUID>& uuid,
const BSONObj& msgObj,
const boost::optional<BSONObj> o2MsgObj,
const boost::optional<repl::OpTime> preImageOpTime,
@@ -142,7 +142,7 @@ public:
const NamespaceString& fromCollection,
const NamespaceString& toCollection,
const UUID& uuid,
- OptionalCollectionUUID dropTargetUUID,
+ const boost::optional<UUID>& dropTargetUUID,
std::uint64_t numRecords,
bool stayTemp) final {}
@@ -160,7 +160,7 @@ public:
const NamespaceString& fromCollection,
const NamespaceString& toCollection,
const UUID& uuid,
- OptionalCollectionUUID dropTargetUUID,
+ const boost::optional<UUID>& dropTargetUUID,
std::uint64_t numRecords,
bool stayTemp) final {
return repl::OpTime();
@@ -169,7 +169,7 @@ public:
const NamespaceString& fromCollection,
const NamespaceString& toCollection,
const UUID& uuid,
- OptionalCollectionUUID dropTargetUUID,
+ const boost::optional<UUID>& dropTargetUUID,
bool stayTemp) final {}
void onApplyOps(OperationContext* opCtx,
const std::string& dbName,