summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/oplog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/oplog.h')
-rw-r--r--src/mongo/db/repl/oplog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/repl/oplog.h b/src/mongo/db/repl/oplog.h
index f64828bef0d..68714dea96d 100644
--- a/src/mongo/db/repl/oplog.h
+++ b/src/mongo/db/repl/oplog.h
@@ -32,7 +32,7 @@ namespace mongo {
class BSONObj;
class Database;
- class TransactionExperiment;
+ class OperationContext;
class OpTime;
// These functions redefine the function for logOp(),
@@ -68,7 +68,7 @@ namespace mongo {
See _logOp() in oplog.cpp for more details.
*/
- void logOp( TransactionExperiment* txn,
+ void logOp( OperationContext* txn,
const char *opstr,
const char *ns,
const BSONObj& obj,
@@ -96,7 +96,7 @@ namespace mongo {
* @param convertUpdateToUpsert convert some updates to upserts for idempotency reasons
* Returns if the op was an update that could not be applied (true on failure)
*/
- bool applyOperation_inlock(TransactionExperiment* txn,
+ bool applyOperation_inlock(OperationContext* txn,
Database* db,
const BSONObj& op,
bool fromRepl = true,