summaryrefslogtreecommitdiff
path: root/src/mongo/db/op_observer.h
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2019-01-29 16:15:30 -0500
committerGregory Wlodarek <gregory.wlodarek@mongodb.com>2019-02-01 08:59:20 -0500
commitec1a376c2e7203a2aef8c2153f5ec8741dba565e (patch)
treeac212ab2ce0d341318fb8d595873c089d9767814 /src/mongo/db/op_observer.h
parentc8a044450030909a0a0f5e07c619d0c2c8418ead (diff)
downloadmongo-ec1a376c2e7203a2aef8c2153f5ec8741dba565e.tar.gz
SERVER-39067 Implement new simultaneous index builds abortIndexBuild oplog entry in OpObserver and oplog.cpp
Diffstat (limited to 'src/mongo/db/op_observer.h')
-rw-r--r--src/mongo/db/op_observer.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/db/op_observer.h b/src/mongo/db/op_observer.h
index ef1fb9903e3..682a6f0311d 100644
--- a/src/mongo/db/op_observer.h
+++ b/src/mongo/db/op_observer.h
@@ -112,8 +112,10 @@ public:
bool fromMigrate) = 0;
virtual void onAbortIndexBuild(OperationContext* opCtx,
+ const NamespaceString& nss,
CollectionUUID collUUID,
- const BSONObj& indexInfo,
+ const UUID& indexBuildUUID,
+ const std::vector<BSONObj>& indexes,
bool fromMigrate) = 0;
virtual void onInserts(OperationContext* opCtx,