summaryrefslogtreecommitdiff
path: root/src/mongo/db/matcher/expression_geo.cpp
diff options
context:
space:
mode:
authorCharlie Swanson <charlie.swanson@mongodb.com>2019-11-27 21:22:40 +0000
committerevergreen <evergreen@mongodb.com>2019-11-27 21:22:40 +0000
commit4d1ce1b892eef6f3926548a7b34d020a02eaee8a (patch)
treece9d233ff333c012d845d4c3da16e8a2393871cf /src/mongo/db/matcher/expression_geo.cpp
parent05caeff5a904d494c7dc6c994ed67a9b6c30a008 (diff)
downloadmongo-4d1ce1b892eef6f3926548a7b34d020a02eaee8a.tar.gz
SERVER-43349 Accommodate double $nots during serialization
Diffstat (limited to 'src/mongo/db/matcher/expression_geo.cpp')
-rw-r--r--src/mongo/db/matcher/expression_geo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/matcher/expression_geo.cpp b/src/mongo/db/matcher/expression_geo.cpp
index 9272148b323..68cf0c9d3ef 100644
--- a/src/mongo/db/matcher/expression_geo.cpp
+++ b/src/mongo/db/matcher/expression_geo.cpp
@@ -369,7 +369,7 @@ void GeoMatchExpression::debugString(StringBuilder& debug, int indentationLevel)
_debugAddSpace(debug, indentationLevel);
BSONObjBuilder builder;
- serialize(&builder);
+ serialize(&builder, true);
debug << "GEO raw = " << builder.obj().toString();
MatchExpression::TagData* td = getTag();