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/ops/delete.h | |
parent | 71cbb04eb8262b0bdf255056f26101466c11b43d (diff) | |
download | mongo-4de88387eec6c0bb08b10d0ba1574a656f56232d.tar.gz |
SERVER-13641 rename TransactionExperiment to OperationContext
Diffstat (limited to 'src/mongo/db/ops/delete.h')
-rw-r--r-- | src/mongo/db/ops/delete.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/ops/delete.h b/src/mongo/db/ops/delete.h index 28327c42c06..f0536b63dd2 100644 --- a/src/mongo/db/ops/delete.h +++ b/src/mongo/db/ops/delete.h @@ -36,10 +36,10 @@ namespace mongo { class Database; - class TransactionExperiment; + class OperationContext; // If justOne is true, deletedId is set to the id of the deleted object. - long long deleteObjects(TransactionExperiment* txn, + long long deleteObjects(OperationContext* txn, Database* db, const StringData& ns, BSONObj pattern, |