From 7c196029e8529d8d217a4c9314d8a4e6069a91d2 Mon Sep 17 00:00:00 2001 From: Arun Banala Date: Thu, 12 Nov 2020 17:48:52 +0000 Subject: Revert "SERVER-50442 Remove ensureIndex shell function This commit also replaces all the usages of ensureIndex() with createIndex() in JS tests and JS shell" This reverts commit e69c967ff8b53634770438dfe9a5c7d13548351b. --- jstests/core/geo_poly_edge.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'jstests/core/geo_poly_edge.js') diff --git a/jstests/core/geo_poly_edge.js b/jstests/core/geo_poly_edge.js index eee43bfc55c..971483e9eef 100644 --- a/jstests/core/geo_poly_edge.js +++ b/jstests/core/geo_poly_edge.js @@ -8,7 +8,7 @@ var coll = db.getCollection('jstests_geo_poly_edge'); coll.drop(); -coll.createIndex({loc: "2d"}); +coll.ensureIndex({loc: "2d"}); coll.insert({loc: [10, 10]}); coll.insert({loc: [10, -10]}); -- cgit v1.2.1