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/op_observer_impl.h | |
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/op_observer_impl.h')
-rw-r--r-- | src/mongo/db/op_observer_impl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/db/op_observer_impl.h b/src/mongo/db/op_observer_impl.h index fb1b6bd5264..86ced3d6f81 100644 --- a/src/mongo/db/op_observer_impl.h +++ b/src/mongo/db/op_observer_impl.h @@ -62,8 +62,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, |