summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/fetch.h
diff options
context:
space:
mode:
authorDavid Storch <david.storch@10gen.com>2015-06-22 16:37:08 -0400
committerDavid Storch <david.storch@10gen.com>2015-07-01 14:42:17 -0400
commit820289c3c4244666e1829732150d842af775e56d (patch)
tree9844ae54f597514bd8fb49b9fe04831ae700770f /src/mongo/db/exec/fetch.h
parent4f4e36b69bfd6ea8615e2c0786a4d1dbca502a74 (diff)
downloadmongo-820289c3c4244666e1829732150d842af775e56d.tar.gz
SERVER-18961 avoid iterating the entire working set when preparing for a WiredTiger snapshot change
Improves performance for query plans with a blocking stage when using the WiredTiger storage engine. In particular, full text search and geoNear queries should benefit.
Diffstat (limited to 'src/mongo/db/exec/fetch.h')
-rw-r--r--src/mongo/db/exec/fetch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/fetch.h b/src/mongo/db/exec/fetch.h
index 292f3bac6b8..9a0ff81c021 100644
--- a/src/mongo/db/exec/fetch.h
+++ b/src/mongo/db/exec/fetch.h
@@ -42,7 +42,7 @@ class RecordCursor;
/**
* This stage turns a RecordId into a BSONObj.
*
- * In WorkingSetMember terms, it transitions from LOC_AND_IDX to LOC_AND_UNOWNED_OBJ by reading
+ * In WorkingSetMember terms, it transitions from LOC_AND_IDX to LOC_AND_OBJ by reading
* the record at the provided loc. Returns verbatim any data that already has an object.
*
* Preconditions: Valid RecordId.