summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/query_solution.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/query/query_solution.cpp')
-rw-r--r--src/mongo/db/query/query_solution.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mongo/db/query/query_solution.cpp b/src/mongo/db/query/query_solution.cpp
index 5bc7ff5276c..3eb12ee0cc1 100644
--- a/src/mongo/db/query/query_solution.cpp
+++ b/src/mongo/db/query/query_solution.cpp
@@ -79,6 +79,8 @@ void TextNode::appendToString(mongoutils::str::stream* ss, int indent) const {
addIndent(ss, indent + 1);
*ss << "caseSensitive= " << caseSensitive << '\n';
addIndent(ss, indent + 1);
+ *ss << "diacriticSensitive= " << diacriticSensitive << '\n';
+ addIndent(ss, indent + 1);
*ss << "indexPrefix = " << indexPrefix.toString() << '\n';
if (NULL != filter) {
addIndent(ss, indent + 1);
@@ -96,6 +98,7 @@ QuerySolutionNode* TextNode::clone() const {
copy->query = this->query;
copy->language = this->language;
copy->caseSensitive = this->caseSensitive;
+ copy->diacriticSensitive = this->diacriticSensitive;
copy->indexPrefix = this->indexPrefix;
return copy;