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/skip1.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'jstests/core/skip1.js') diff --git a/jstests/core/skip1.js b/jstests/core/skip1.js index 3b99e6b4cdd..ae8f589d616 100644 --- a/jstests/core/skip1.js +++ b/jstests/core/skip1.js @@ -6,7 +6,7 @@ var t = db.jstests_skip1; if (0) { // SERVER-2845 t.drop(); - t.createIndex({a: 1}); + t.ensureIndex({a: 1}); t.save({a: 5}); t.save({a: 5}); t.save({a: 5}); -- cgit v1.2.1