summaryrefslogtreecommitdiff
path: root/jstests/core/regex3.js
diff options
context:
space:
mode:
authorArun Banala <arun.banala@mongodb.com>2020-11-12 17:48:52 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-11-12 18:15:38 +0000
commit7c196029e8529d8d217a4c9314d8a4e6069a91d2 (patch)
treedcac2d4dda9015804fbf538cffd4a15d9c02cd39 /jstests/core/regex3.js
parentccd024d9fb5c0587e33a3a3321e7f9a0430d0190 (diff)
downloadmongo-7c196029e8529d8d217a4c9314d8a4e6069a91d2.tar.gz
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.
Diffstat (limited to 'jstests/core/regex3.js')
-rw-r--r--jstests/core/regex3.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/jstests/core/regex3.js b/jstests/core/regex3.js
index 158d0607647..46b18c03028 100644
--- a/jstests/core/regex3.js
+++ b/jstests/core/regex3.js
@@ -14,7 +14,7 @@ t.save({name: "aaron"});
assert.eq(2, t.find({name: /^e.*/}).itcount(), "no index count");
assert.eq(
4, t.find({name: /^e.*/}).explain(true).executionStats.totalDocsExamined, "no index explain");
-t.createIndex({name: 1});
+t.ensureIndex({name: 1});
assert.eq(2, t.find({name: /^e.*/}).itcount(), "index count");
assert.eq(2,
t.find({name: /^e.*/}).explain(true).executionStats.totalKeysExamined,
@@ -28,7 +28,7 @@ t.save({name: "ac"});
t.save({name: "c"});
assert.eq(3, t.find({name: /^aa*/}).itcount(), "B ni");
-t.createIndex({name: 1});
+t.ensureIndex({name: 1});
assert.eq(3, t.find({name: /^aa*/}).itcount(), "B i 1");
assert.eq(4, t.find({name: /^aa*/}).explain(true).executionStats.totalKeysExamined, "B i 1 e");
@@ -39,5 +39,5 @@ t.drop();
t.save({name: ""});
assert.eq(1, t.find({name: /^a?/}).itcount(), "C 1");
-t.createIndex({name: 1});
+t.ensureIndex({name: 1});
assert.eq(1, t.find({name: /^a?/}).itcount(), "C 2");