summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/projection.h
diff options
context:
space:
mode:
authorJason Rassi <rassi@10gen.com>2015-11-05 17:46:37 -0500
committerJason Rassi <rassi@10gen.com>2015-11-12 16:28:55 -0500
commitbb62b1223f72c3ad8af0b77019c2ce3390d677a1 (patch)
tree758b09bc306ae24f8c25aa2fd59f81bccc981e58 /src/mongo/db/exec/projection.h
parent0307dcde4cf50c4d245a6181e426343874950b4d (diff)
downloadmongo-bb62b1223f72c3ad8af0b77019c2ce3390d677a1.tar.gz
SERVER-19510 Refactor $text match expression parsing
- Text parsing no longer uses dedicated callback handle; responsibility moved to ExtensionsCallback. - Introduces TextMatchExpressionBase (new base class for existing class TextMatchExpression and new class TextNoOpMatchExpression).
Diffstat (limited to 'src/mongo/db/exec/projection.h')
-rw-r--r--src/mongo/db/exec/projection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/projection.h b/src/mongo/db/exec/projection.h
index 389abcc2123..87a3f97a2fd 100644
--- a/src/mongo/db/exec/projection.h
+++ b/src/mongo/db/exec/projection.h
@@ -66,7 +66,7 @@ struct ProjectionStageParams {
// from. Otherwise, this field is ignored.
BSONObj coveredKeyObj;
- // Used for creating context for the $where clause processing. Not owned.
+ // Used for creating context for the match extensions processing. Not owned.
const MatchExpressionParser::ExtensionsCallback* extensionsCallback;
};