summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/query_planner_test_lib.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/query/query_planner_test_lib.cpp')
-rw-r--r--src/mongo/db/query/query_planner_test_lib.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mongo/db/query/query_planner_test_lib.cpp b/src/mongo/db/query/query_planner_test_lib.cpp
index 2fe75527574..134392e34d9 100644
--- a/src/mongo/db/query/query_planner_test_lib.cpp
+++ b/src/mongo/db/query/query_planner_test_lib.cpp
@@ -248,13 +248,6 @@ namespace mongo {
}
return filterMatches(filter.Obj(), trueSoln);
}
- else if (STAGE_GEO_2D == trueSoln->getType()) {
- const Geo2DNode* node = static_cast<const Geo2DNode*>(trueSoln);
- BSONElement el = testSoln["geo2d"];
- if (el.eoo() || !el.isABSONObj()) { return false; }
- BSONObj geoObj = el.Obj();
- return geoObj == node->indexKeyPattern;
- }
else if (STAGE_GEO_NEAR_2D == trueSoln->getType()) {
const GeoNear2DNode* node = static_cast<const GeoNear2DNode*>(trueSoln);
BSONElement el = testSoln["geoNear2d"];