summaryrefslogtreecommitdiff
path: root/src/mongo/db/ops/delete.cpp
diff options
context:
space:
mode:
authorMartin Bligh <mbligh@mongodb.com>2015-10-21 13:25:24 -0400
committerMartin Bligh <mbligh@mongodb.com>2015-10-21 13:26:52 -0400
commita46d64143bae5b1e66b18cb13683d59d8d986e6b (patch)
tree73da57b8ad77f1b466f45e684f1d98fb56636e05 /src/mongo/db/ops/delete.cpp
parentf7f592e92b3146e20d311a35492116d7488e7e2b (diff)
downloadmongo-a46d64143bae5b1e66b18cb13683d59d8d986e6b.tar.gz
SERVER-21048: Stop regetting the collection in deleteObjects
Diffstat (limited to 'src/mongo/db/ops/delete.cpp')
-rw-r--r--src/mongo/db/ops/delete.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/mongo/db/ops/delete.cpp b/src/mongo/db/ops/delete.cpp
index 325b0d36bc0..870deb66dd5 100644
--- a/src/mongo/db/ops/delete.cpp
+++ b/src/mongo/db/ops/delete.cpp
@@ -45,7 +45,7 @@ namespace mongo {
god: allow access to system namespaces, and don't yield
*/
long long deleteObjects(OperationContext* txn,
- Database* db,
+ Collection* collection,
StringData ns,
BSONObj pattern,
PlanExecutor::YieldPolicy policy,
@@ -60,11 +60,6 @@ long long deleteObjects(OperationContext* txn,
request.setFromMigrate(fromMigrate);
request.setYieldPolicy(policy);
- Collection* collection = NULL;
- if (db) {
- collection = db->getCollection(nsString.ns());
- }
-
ParsedDelete parsedDelete(txn, &request);
uassertStatusOK(parsedDelete.parseRequest());