summaryrefslogtreecommitdiff
path: root/src/mongo/db/curop.h
diff options
context:
space:
mode:
authorRandolph Tan <randolph@10gen.com>2014-02-13 11:11:50 -0500
committerRandolph Tan <randolph@10gen.com>2014-02-13 11:11:50 -0500
commit054fed4f846d1583f0ac9b9e4d5d32b776054589 (patch)
tree3f8f4ce5230645f0c95aaa01f8f5888a6c313bd4 /src/mongo/db/curop.h
parent211cac34e574f92cfdf60b7b35312c8a7934118a (diff)
downloadmongo-054fed4f846d1583f0ac9b9e4d5d32b776054589.tar.gz
SERVER-12664 Change nUpdated to nMatched in bulk api results
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 182e65a037a..c8b7074f2de 100644
--- a/src/mongo/db/curop.h
+++ b/src/mongo/db/curop.h
@@ -157,7 +157,7 @@ namespace mongo {
long long nscanned;
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 nMatched; // number of records updated (including no-ops)
+ long long nMatched; // number of records that match the query
long long nModified; // number of records written (no no-ops)
long long nmoved; // updates resulted in a move (moves are expensive)
long long ninserted;