summaryrefslogtreecommitdiff
path: root/jstests/core/indexj.js
diff options
context:
space:
mode:
authorRishab Joshi <rishab.joshi@mongodb.com>2020-11-17 13:45:05 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-11-17 14:23:10 +0000
commit4329ffafa3ef2f9ea40b7ff17a6af8604720de12 (patch)
tree44cad61cfcdb57abccc910e49fa20f4c6fcc81f2 /jstests/core/indexj.js
parent519bc2b24ecc6c29f2483c8b82786e16f61c2cba (diff)
downloadmongo-4329ffafa3ef2f9ea40b7ff17a6af8604720de12.tar.gz
SERVER-50442 Remove ensureIndex shell function
This commit replaces all the usages of ensureIndex() with createIndex() in JS tests and JS shell""
Diffstat (limited to 'jstests/core/indexj.js')
-rw-r--r--jstests/core/indexj.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/jstests/core/indexj.js b/jstests/core/indexj.js
index 76bf8cb17e9..64cf9844d7f 100644
--- a/jstests/core/indexj.js
+++ b/jstests/core/indexj.js
@@ -20,12 +20,12 @@ function keysExamined(query, hint, sort) {
return explain.executionStats.totalKeysExamined;
}
-t.ensureIndex({a: 1});
+t.createIndex({a: 1});
t.save({a: 5});
assert.eq(0, keysExamined({a: {$gt: 4, $lt: 5}}), "A");
t.drop();
-t.ensureIndex({a: 1});
+t.createIndex({a: 1});
t.save({a: 4});
assert.eq(0, keysExamined({a: {$gt: 4, $lt: 5}}), "B");
@@ -39,7 +39,7 @@ t.save({a: 5});
assert.eq(0, keysExamined({a: {$gt: 4, $lt: 5}}), "D");
t.drop();
-t.ensureIndex({a: 1, b: 1});
+t.createIndex({a: 1, b: 1});
t.save({a: 1, b: 1});
t.save({a: 1, b: 2});
t.save({a: 2, b: 1});