summaryrefslogtreecommitdiff
path: root/jstests/core/fts_blogwild.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/fts_blogwild.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/fts_blogwild.js')
-rw-r--r--jstests/core/fts_blogwild.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/core/fts_blogwild.js b/jstests/core/fts_blogwild.js
index 881c486edad..207fea471c1 100644
--- a/jstests/core/fts_blogwild.js
+++ b/jstests/core/fts_blogwild.js
@@ -18,7 +18,7 @@ t.save({
// default weight is 1
// specify weights if you want a field to be more meaningull
-t.createIndex({dummy: "text"}, {weights: "$**"});
+t.ensureIndex({dummy: "text"}, {weights: "$**"});
res = t.find({"$text": {"$search": "blog"}});
assert.eq(3, res.length(), "A1");
@@ -29,7 +29,7 @@ assert.eq(3, res.length(), "B1");
// mixing
t.dropIndex("dummy_text");
assert.eq(1, t.getIndexKeys().length, "C1");
-t.createIndex({dummy: "text"}, {weights: {"$**": 1, title: 2}});
+t.ensureIndex({dummy: "text"}, {weights: {"$**": 1, title: 2}});
res = t.find({"$text": {"$search": "write"}}, {score: {"$meta": "textScore"}}).sort({
score: {"$meta": "textScore"}