summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/index_version_autoupgrade.js
diff options
context:
space:
mode:
authorTess Avitabile <tess.avitabile@mongodb.com>2017-06-02 15:29:32 -0400
committerTess Avitabile <tess.avitabile@mongodb.com>2017-06-09 15:05:04 -0400
commit67500efdc1c677173c737ecde2b07b42015ae5fd (patch)
tree4a735cf4c6561e28b76f65117d47231e9a677d04 /jstests/noPassthrough/index_version_autoupgrade.js
parentf9c36696a25d3837f512421755952736236bbed0 (diff)
downloadmongo-67500efdc1c677173c737ecde2b07b42015ae5fd.tar.gz
SERVER-29350 Bump featureCompatibilityVersion to 3.6
Diffstat (limited to 'jstests/noPassthrough/index_version_autoupgrade.js')
-rw-r--r--jstests/noPassthrough/index_version_autoupgrade.js16
1 files changed, 3 insertions, 13 deletions
diff --git a/jstests/noPassthrough/index_version_autoupgrade.js b/jstests/noPassthrough/index_version_autoupgrade.js
index b7dcd5c7f35..c9b4e523448 100644
--- a/jstests/noPassthrough/index_version_autoupgrade.js
+++ b/jstests/noPassthrough/index_version_autoupgrade.js
@@ -7,15 +7,8 @@
load("jstests/libs/get_index_helpers.js");
- function getFeatureCompatibilityVersion(conn) {
- const res = assert.commandWorked(
- conn.adminCommand({getParameter: 1, featureCompatibilityVersion: 1}));
- return res.featureCompatibilityVersion;
- }
-
var conn = MongoRunner.runMongod({});
assert.neq(null, conn, "mongod was unable to start up");
- assert.eq("3.4", getFeatureCompatibilityVersion(conn));
var testDB = conn.getDB("test");
assert.commandWorked(testDB.runCommand({create: "index_version_autoupgrade"}));
@@ -42,10 +35,9 @@
testDB.dropDatabase();
var coll = testDB.index_version_autoupgrade;
- // Create a v=1 _id index. This requires setting featureCompatibilityVersion to 3.2.
- assert.commandWorked(conn.adminCommand({setFeatureCompatibilityVersion: "3.2"}));
- assert.commandWorked(testDB.createCollection("index_version_autoupgrade"));
- assert.commandWorked(conn.adminCommand({setFeatureCompatibilityVersion: "3.4"}));
+ // Create a v=1 _id index.
+ assert.commandWorked(testDB.createCollection(
+ "index_version_autoupgrade", {idIndex: {key: {_id: 1}, name: "_id_", v: 1}}));
var allIndexes = coll.getIndexes();
var spec = GetIndexHelpers.findByKeyPattern(allIndexes, {_id: 1});
assert.neq(null, spec, "Index with key pattern {_id: 1} not found: " + tojson(allIndexes));
@@ -151,7 +143,6 @@
// version.
var cloneConn = MongoRunner.runMongod({});
assert.neq(null, cloneConn, "mongod was unable to start up");
- assert.eq("3.4", getFeatureCompatibilityVersion(cloneConn));
testIndexVersionAutoUpgrades(function(coll) {
var cloneDB = cloneConn.getDB(coll.getDB().getName());
assert.commandWorked(cloneDB.runCommand({
@@ -165,7 +156,6 @@
// Test that the "clone" command doesn't upgrade existing indexes to the latest version.
cloneConn = MongoRunner.runMongod({});
assert.neq(null, cloneConn, "mongod was unable to start up");
- assert.eq("3.4", getFeatureCompatibilityVersion(cloneConn));
testIndexVersionAutoUpgrades(function(coll) {
var cloneDB = cloneConn.getDB(coll.getDB().getName());
assert.commandWorked(cloneDB.runCommand({