summaryrefslogtreecommitdiff
path: root/src/mongo/db/matcher/expression_geo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/matcher/expression_geo.cpp')
-rw-r--r--src/mongo/db/matcher/expression_geo.cpp19
1 files changed, 11 insertions, 8 deletions
diff --git a/src/mongo/db/matcher/expression_geo.cpp b/src/mongo/db/matcher/expression_geo.cpp
index 222bece16a4..9970384577b 100644
--- a/src/mongo/db/matcher/expression_geo.cpp
+++ b/src/mongo/db/matcher/expression_geo.cpp
@@ -30,11 +30,11 @@
#define MONGO_LOG_DEFAULT_COMPONENT ::mongo::logger::LogComponent::kDefault
-#include "mongo/platform/basic.h"
#include "mongo/db/matcher/expression_geo.h"
#include "mongo/db/geo/geoparser.h"
-#include "mongo/util/mongoutils/str.h"
+#include "mongo/platform/basic.h"
#include "mongo/util/log.h"
+#include "mongo/util/mongoutils/str.h"
namespace mongo {
@@ -133,8 +133,8 @@ Status GeoExpression::parseFrom(const BSONObj& obj) {
if (GeoExpression::INTERSECT == predicate) {
if (!geoContainer->supportsProject(SPHERE)) {
return Status(ErrorCodes::BadValue,
- str::stream()
- << "$geoIntersect not supported with provided geometry: " << obj);
+ str::stream() << "$geoIntersect not supported with provided geometry: "
+ << obj);
}
geoContainer->projectInto(SPHERE);
}
@@ -219,7 +219,8 @@ Status GeoNearExpression::parseNewQuery(const BSONObj& obj) {
return Status(ErrorCodes::BadValue,
mongoutils::str::stream()
<< "geo near accepts just one argument when querying for a GeoJSON "
- << "point. Extra field found: " << objIt.next());
+ << "point. Extra field found: "
+ << objIt.next());
}
// Parse "new" near:
@@ -231,8 +232,8 @@ Status GeoNearExpression::parseNewQuery(const BSONObj& obj) {
BSONObj::MatchType matchType = static_cast<BSONObj::MatchType>(e.getGtLtOp());
if (BSONObj::opNEAR != matchType) {
return Status(ErrorCodes::BadValue,
- mongoutils::str::stream()
- << "invalid geo near query operator: " << e.fieldName());
+ mongoutils::str::stream() << "invalid geo near query operator: "
+ << e.fieldName());
}
// Iterate over the argument.
@@ -247,7 +248,9 @@ Status GeoNearExpression::parseNewQuery(const BSONObj& obj) {
return Status(ErrorCodes::BadValue,
str::stream()
<< "invalid point in geo near query $geometry argument: "
- << embeddedObj << " " << status.reason());
+ << embeddedObj
+ << " "
+ << status.reason());
}
uassert(16681,
"$near requires geojson point, given " + embeddedObj.toString(),