summaryrefslogtreecommitdiff
path: root/src/mongo/db/curop.h
diff options
context:
space:
mode:
authorRandolph Tan <randolph@10gen.com>2014-01-10 13:07:04 -0500
committerRandolph Tan <randolph@10gen.com>2014-01-13 11:41:31 -0500
commit77148d5a6c3e775c8e5e2944fac9695833f11b52 (patch)
tree58f222cf63bfd1ff5eaf2d040720fbe2cdc4c59a /src/mongo/db/curop.h
parentfef75c6b2d337151b37e3e77c54df72a9327b54e (diff)
downloadmongo-77148d5a6c3e775c8e5e2944fac9695833f11b52.tar.gz
SERVER-12319 nDocsModified in write commands to nModified
Diffstat (limited to 'src/mongo/db/curop.h')
-rw-r--r--src/mongo/db/curop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/curop.h b/src/mongo/db/curop.h
index 4042e0bfd5a..eed53648a81 100644
--- a/src/mongo/db/curop.h
+++ b/src/mongo/db/curop.h
@@ -93,7 +93,7 @@ namespace mongo {
bool idhack; // indicates short circuited code path on an update to make the update faster
bool scanAndOrder; // scanandorder query plan aspect was used
long long nupdated; // number of records updated (including no-ops)
- long long nDocsModified; // number of records written (no no-ops)
+ long long nModified; // number of records written (no no-ops)
long long nmoved; // updates resulted in a move (moves are expensive)
long long ninserted;
long long ndeleted;