diff options
author | Hari Khalsa <hkhalsa@10gen.com> | 2014-05-15 13:26:48 -0400 |
---|---|---|
committer | Hari Khalsa <hkhalsa@10gen.com> | 2014-05-15 13:56:05 -0400 |
commit | 4de88387eec6c0bb08b10d0ba1574a656f56232d (patch) | |
tree | 7fdc9a0acd251b5b8b0a8f3de45ce1c2ecf7e94c /src/mongo/db/commands/mr.h | |
parent | 71cbb04eb8262b0bdf255056f26101466c11b43d (diff) | |
download | mongo-4de88387eec6c0bb08b10d0ba1574a656f56232d.tar.gz |
SERVER-13641 rename TransactionExperiment to OperationContext
Diffstat (limited to 'src/mongo/db/commands/mr.h')
-rw-r--r-- | src/mongo/db/commands/mr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/commands/mr.h b/src/mongo/db/commands/mr.h index 88d114fb5b9..9eddac77efc 100644 --- a/src/mongo/db/commands/mr.h +++ b/src/mongo/db/commands/mr.h @@ -42,7 +42,7 @@ namespace mongo { - class TransactionExperiment; + class OperationContext; namespace mr { @@ -239,7 +239,7 @@ namespace mongo { /** * txn must outlive this State. */ - State( TransactionExperiment* txn, const Config& c ); + State( OperationContext* txn, const Config& c ); ~State(); void init(); @@ -343,7 +343,7 @@ namespace mongo { */ int _add(InMemory* im , const BSONObj& a); - TransactionExperiment* _txn; + OperationContext* _txn; scoped_ptr<Scope> _scope; bool _onDisk; // if the end result of this map reduce is disk or not |