diff options
author | Gregory Wlodarek <gregory.wlodarek@mongodb.com> | 2019-01-29 16:15:30 -0500 |
---|---|---|
committer | Gregory Wlodarek <gregory.wlodarek@mongodb.com> | 2019-02-01 08:59:20 -0500 |
commit | ec1a376c2e7203a2aef8c2153f5ec8741dba565e (patch) | |
tree | ac212ab2ce0d341318fb8d595873c089d9767814 /src/mongo/db/free_mon | |
parent | c8a044450030909a0a0f5e07c619d0c2c8418ead (diff) | |
download | mongo-ec1a376c2e7203a2aef8c2153f5ec8741dba565e.tar.gz |
SERVER-39067 Implement new simultaneous index builds abortIndexBuild oplog entry in OpObserver and oplog.cpp
Diffstat (limited to 'src/mongo/db/free_mon')
-rw-r--r-- | src/mongo/db/free_mon/free_mon_op_observer.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/db/free_mon/free_mon_op_observer.h b/src/mongo/db/free_mon/free_mon_op_observer.h index 2b52ce4fe34..d11fbf00099 100644 --- a/src/mongo/db/free_mon/free_mon_op_observer.h +++ b/src/mongo/db/free_mon/free_mon_op_observer.h @@ -67,8 +67,10 @@ public: bool fromMigrate) final {} void onAbortIndexBuild(OperationContext* opCtx, + const NamespaceString& nss, CollectionUUID collUUID, - const BSONObj& indexInfo, + const UUID& indexBuildUUID, + const std::vector<BSONObj>& indexes, bool fromMigrate) final {} void onInserts(OperationContext* opCtx, |