summaryrefslogtreecommitdiff
path: root/jstests/core/fts1.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/fts1.js')
-rw-r--r--jstests/core/fts1.js30
1 files changed, 15 insertions, 15 deletions
diff --git a/jstests/core/fts1.js b/jstests/core/fts1.js
index 9b95fa8dc14..2ce50a22eeb 100644
--- a/jstests/core/fts1.js
+++ b/jstests/core/fts1.js
@@ -2,26 +2,26 @@
// collection.
// @tags: [assumes_no_implicit_index_creation]
(function() {
- "use strict";
+"use strict";
- load("jstests/libs/fts.js");
+load("jstests/libs/fts.js");
- const coll = db.text1;
- coll.drop();
+const coll = db.text1;
+coll.drop();
- assert.commandWorked(coll.createIndex({x: "text"}, {name: "x_text"}));
+assert.commandWorked(coll.createIndex({x: "text"}, {name: "x_text"}));
- assert.eq([], queryIDS(coll, "az"), "A0");
+assert.eq([], queryIDS(coll, "az"), "A0");
- assert.writeOK(coll.insert({_id: 1, x: "az b c"}));
- assert.writeOK(coll.insert({_id: 2, x: "az b"}));
- assert.writeOK(coll.insert({_id: 3, x: "b c"}));
- assert.writeOK(coll.insert({_id: 4, x: "b c d"}));
+assert.writeOK(coll.insert({_id: 1, x: "az b c"}));
+assert.writeOK(coll.insert({_id: 2, x: "az b"}));
+assert.writeOK(coll.insert({_id: 3, x: "b c"}));
+assert.writeOK(coll.insert({_id: 4, x: "b c d"}));
- assert.eq([1, 2, 3, 4], queryIDS(coll, "c az").sort(), "A1");
- assert.eq([4], queryIDS(coll, "d"), "A2");
+assert.eq([1, 2, 3, 4], queryIDS(coll, "c az").sort(), "A1");
+assert.eq([4], queryIDS(coll, "d"), "A2");
- const index = coll.getIndexes().find(index => index.name === "x_text");
- assert.neq(index, undefined);
- assert.gte(index.textIndexVersion, 1, tojson(index));
+const index = coll.getIndexes().find(index => index.name === "x_text");
+assert.neq(index, undefined);
+assert.gte(index.textIndexVersion, 1, tojson(index));
}());