summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/subplan.cpp
diff options
context:
space:
mode:
authorJason Rassi <rassi@10gen.com>2015-11-02 14:04:16 -0500
committerJason Rassi <rassi@10gen.com>2015-11-05 13:56:56 -0500
commite2cbe3c873fa2f989e5c2b811b1757ac0f2095e3 (patch)
tree973d62ef29e235ce2e6208d1bd64477a75c53b58 /src/mongo/db/exec/subplan.cpp
parent3b76b83742bcd2124abe38718ad5c68bd72b2fc8 (diff)
downloadmongo-e2cbe3c873fa2f989e5c2b811b1757ac0f2095e3.tar.gz
SERVER-19510 ExtensionsCallbackReal ctor take ptr to NamespaceString
Diffstat (limited to 'src/mongo/db/exec/subplan.cpp')
-rw-r--r--src/mongo/db/exec/subplan.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/subplan.cpp b/src/mongo/db/exec/subplan.cpp
index 2c4e4ea82b9..efed540c37d 100644
--- a/src/mongo/db/exec/subplan.cpp
+++ b/src/mongo/db/exec/subplan.cpp
@@ -178,7 +178,7 @@ Status SubplanStage::planSubqueries() {
LOG(5) << "Subplanner: index " << i << " is " << ie.toString();
}
- const ExtensionsCallbackReal extensionsCallback(getOpCtx(), _collection->ns().db());
+ const ExtensionsCallbackReal extensionsCallback(getOpCtx(), &_collection->ns());
for (size_t i = 0; i < _orExpression->numChildren(); ++i) {
// We need a place to shove the results from planning this branch.