summaryrefslogtreecommitdiff
path: root/src/mongo/db/fcv_op_observer.h
diff options
context:
space:
mode:
authorDaniel Gómez Ferro <daniel.gomezferro@mongodb.com>2021-11-26 14:39:47 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-12-02 09:08:59 +0000
commita51938f6f77a6c4934c0cc91bca31cebb6af62e5 (patch)
treec6ad3f87cc216930c8707fdb9c7d3d2cfaf084cb /src/mongo/db/fcv_op_observer.h
parentc5f47b7a04ce688b088c1373805e876b0debae66 (diff)
downloadmongo-a51938f6f77a6c4934c0cc91bca31cebb6af62e5.tar.gz
SERVER-60837 Remove CollectionUUID and OptionalCollectionUUID aliases
Diffstat (limited to 'src/mongo/db/fcv_op_observer.h')
-rw-r--r--src/mongo/db/fcv_op_observer.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mongo/db/fcv_op_observer.h b/src/mongo/db/fcv_op_observer.h
index 68b77fcf49e..8f4bd2a5835 100644
--- a/src/mongo/db/fcv_op_observer.h
+++ b/src/mongo/db/fcv_op_observer.h
@@ -69,13 +69,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 {}
@@ -86,14 +86,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,
@@ -105,7 +105,7 @@ public:
const BSONObj& doc) final {}
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,
@@ -143,7 +143,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 {}
void onImportCollection(OperationContext* opCtx,
@@ -159,7 +159,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 {};
@@ -168,7 +168,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,