summaryrefslogtreecommitdiff
path: root/src/mongo/db/ops
diff options
context:
space:
mode:
authorJames Wahlin <james.wahlin@10gen.com>2015-06-14 16:13:57 -0400
committerJames Wahlin <james.wahlin@10gen.com>2015-09-03 16:20:17 -0400
commitae9df7fb11cf359686699aeb9539cb6dc35de675 (patch)
tree239705229d7cfc7d06089a007e2d746ce235287d /src/mongo/db/ops
parent2e205e7ee08004436a3f5f1750eb253b15e9027e (diff)
downloadmongo-ae9df7fb11cf359686699aeb9539cb6dc35de675.tar.gz
SERVER-2227 Addition of index usage statistics
Diffstat (limited to 'src/mongo/db/ops')
-rw-r--r--src/mongo/db/ops/update_lifecycle_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/ops/update_lifecycle_impl.cpp b/src/mongo/db/ops/update_lifecycle_impl.cpp
index 511f1b59244..40c86f3fd80 100644
--- a/src/mongo/db/ops/update_lifecycle_impl.cpp
+++ b/src/mongo/db/ops/update_lifecycle_impl.cpp
@@ -68,7 +68,7 @@ bool UpdateLifecycleImpl::canContinue() const {
const UpdateIndexData* UpdateLifecycleImpl::getIndexKeys(OperationContext* opCtx) const {
if (_collection)
- return &_collection->infoCache()->indexKeys(opCtx);
+ return &_collection->infoCache()->getIndexKeys(opCtx);
return NULL;
}