summaryrefslogtreecommitdiff
path: root/jstests/multiVersion
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/multiVersion')
-rw-r--r--jstests/multiVersion/geo_2dsphere_v2_to_v3.js8
-rw-r--r--jstests/multiVersion/initialsync.js5
-rw-r--r--jstests/multiVersion/invalid_key_pattern_upgrade.js11
-rw-r--r--jstests/multiVersion/libs/data_generators.js8
-rw-r--r--jstests/multiVersion/libs/dumprestore_helpers.js52
-rw-r--r--jstests/multiVersion/minor_version_tags_new_old_new.js48
-rw-r--r--jstests/multiVersion/minor_version_tags_old_new_old.js48
-rw-r--r--jstests/multiVersion/mixed_storage_version_replication.js17
-rw-r--r--jstests/multiVersion/partial_index_upgrade.js5
-rw-r--r--jstests/multiVersion/transitioning_to_and_from_WT.js9
-rw-r--r--jstests/multiVersion/upgrade_cluster.js4
-rw-r--r--jstests/multiVersion/wt_index_option_defaults_replset.js8
12 files changed, 79 insertions, 144 deletions
diff --git a/jstests/multiVersion/geo_2dsphere_v2_to_v3.js b/jstests/multiVersion/geo_2dsphere_v2_to_v3.js
index 9fa3773e2a8..c00612a492f 100644
--- a/jstests/multiVersion/geo_2dsphere_v2_to_v3.js
+++ b/jstests/multiVersion/geo_2dsphere_v2_to_v3.js
@@ -3,9 +3,7 @@
function generatePoint() {
var longitude = Math.random() * 10 - 5;
var latitude = Math.random() * 10 - 5;
- var pt = {
- geometry: {type: "Point", coordinates: [longitude, latitude]}
- };
+ var pt = {geometry: {type: "Point", coordinates: [longitude, latitude]}};
return pt;
}
@@ -49,9 +47,7 @@ function get2dsphereIndexVersion(coll) {
return -1;
}
-var nearQuery = {
- geometry: {$near: {$geometry: {type: "Point", coordinates: [0, 0]}}}
-};
+var nearQuery = {geometry: {$near: {$geometry: {type: "Point", coordinates: [0, 0]}}}};
var mongod = MongoRunner.runMongod({binVersion: "3.0"});
var coll = getCollection(mongod);
diff --git a/jstests/multiVersion/initialsync.js b/jstests/multiVersion/initialsync.js
index bbc06c11490..e9a424fd05c 100644
--- a/jstests/multiVersion/initialsync.js
+++ b/jstests/multiVersion/initialsync.js
@@ -8,10 +8,7 @@ var newVersion = "latest";
var name = "multiversioninitsync";
var multitest = function(replSetVersion, newNodeVersion) {
- var nodes = {
- n1: {binVersion: replSetVersion},
- n2: {binVersion: replSetVersion}
- };
+ var nodes = {n1: {binVersion: replSetVersion}, n2: {binVersion: replSetVersion}};
print("Start up a two-node " + replSetVersion + " replica set.");
var rst = new ReplSetTest({name: name, nodes: nodes});
diff --git a/jstests/multiVersion/invalid_key_pattern_upgrade.js b/jstests/multiVersion/invalid_key_pattern_upgrade.js
index ce71333ef40..a3098e34c0a 100644
--- a/jstests/multiVersion/invalid_key_pattern_upgrade.js
+++ b/jstests/multiVersion/invalid_key_pattern_upgrade.js
@@ -8,7 +8,11 @@
(function() {
'use strict';
- var testCases = [{a: 0}, {a: NaN}, {a: true}, ];
+ var testCases = [
+ {a: 0},
+ {a: NaN},
+ {a: true},
+ ];
// The mongod should not start up when an index with an invalid key pattern exists.
testCases.forEach(function(indexKeyPattern) {
@@ -49,7 +53,10 @@
// replicates.
testCases.forEach(function(indexKeyPattern) {
var replSetName = 'invalid_key_pattern_replset';
- var nodes = [{binVersion: '3.2'}, {binVersion: 'latest'}, ];
+ var nodes = [
+ {binVersion: '3.2'},
+ {binVersion: 'latest'},
+ ];
var rst = new ReplSetTest({name: replSetName, nodes: nodes});
diff --git a/jstests/multiVersion/libs/data_generators.js b/jstests/multiVersion/libs/data_generators.js
index c2af0638a5f..bc48845fbb2 100644
--- a/jstests/multiVersion/libs/data_generators.js
+++ b/jstests/multiVersion/libs/data_generators.js
@@ -56,9 +56,7 @@ function DataGenerator() {
function GenObject(seed) {
var seed = seed || 0;
- return {
- "object": true
- };
+ return {"object": true};
}
// BSON Type: 4
function GenArray(seed) {
@@ -647,9 +645,7 @@ function CollectionMetadataGenerator(options) {
//"autoIndexId" : false // XXX: this doesn't exist in 2.4
};
// We need to explicitly enable usePowerOf2Sizes, since it's the default in 2.6 but not in 2.4
- var normalCollectionMetadata = {
- "usePowerOf2Sizes": true
- };
+ var normalCollectionMetadata = {"usePowerOf2Sizes": true};
return {
"get": function() {
diff --git a/jstests/multiVersion/libs/dumprestore_helpers.js b/jstests/multiVersion/libs/dumprestore_helpers.js
index 6ca7e3bd37f..bb552f855df 100644
--- a/jstests/multiVersion/libs/dumprestore_helpers.js
+++ b/jstests/multiVersion/libs/dumprestore_helpers.js
@@ -83,22 +83,20 @@ function multiVersionDumpRestoreTest(configObj) {
// Dump using the specified version of mongodump from the running mongod or mongos instance.
if (configObj.dumpType === "mongod") {
- MongoRunner.runMongoTool("mongodump",
- {
- out: configObj.dumpDir,
- binVersion: configObj.mongoDumpVersion,
- host: serverSource.host,
- db: testBaseName
- });
+ MongoRunner.runMongoTool("mongodump", {
+ out: configObj.dumpDir,
+ binVersion: configObj.mongoDumpVersion,
+ host: serverSource.host,
+ db: testBaseName
+ });
MongoRunner.stopMongod(serverSource.port);
} else { /* "mongos" */
- MongoRunner.runMongoTool("mongodump",
- {
- out: configObj.dumpDir,
- binVersion: configObj.mongoDumpVersion,
- host: serverSource.host,
- db: testBaseName
- });
+ MongoRunner.runMongoTool("mongodump", {
+ out: configObj.dumpDir,
+ binVersion: configObj.mongoDumpVersion,
+ host: serverSource.host,
+ db: testBaseName
+ });
shardingTest.stop();
}
@@ -106,13 +104,12 @@ function multiVersionDumpRestoreTest(configObj) {
if (configObj.restoreType === "mongod") {
var serverDest = MongoRunner.runMongod({binVersion: configObj.serverDestVersion});
- MongoRunner.runMongoTool("mongorestore",
- {
- dir: configObj.dumpDir + "/" + testBaseName,
- binVersion: configObj.mongoRestoreVersion,
- host: serverDest.host,
- db: testBaseName
- });
+ MongoRunner.runMongoTool("mongorestore", {
+ dir: configObj.dumpDir + "/" + testBaseName,
+ binVersion: configObj.mongoRestoreVersion,
+ host: serverDest.host,
+ db: testBaseName
+ });
} else { /* "mongos" */
var shardingTestConfig = {
name: testBaseName + "_sharded_dest",
@@ -124,13 +121,12 @@ function multiVersionDumpRestoreTest(configObj) {
};
var shardingTest = new ShardingTest(shardingTestConfig);
serverDest = shardingTest.s;
- MongoRunner.runMongoTool("mongorestore",
- {
- dir: configObj.dumpDir + "/" + testBaseName,
- binVersion: configObj.mongoRestoreVersion,
- host: serverDest.host,
- db: testBaseName
- });
+ MongoRunner.runMongoTool("mongorestore", {
+ dir: configObj.dumpDir + "/" + testBaseName,
+ binVersion: configObj.mongoRestoreVersion,
+ host: serverDest.host,
+ db: testBaseName
+ });
}
var destDB = serverDest.getDB(testBaseName);
diff --git a/jstests/multiVersion/minor_version_tags_new_old_new.js b/jstests/multiVersion/minor_version_tags_new_old_new.js
index f39b3da4c68..c0fd26343cd 100644
--- a/jstests/multiVersion/minor_version_tags_new_old_new.js
+++ b/jstests/multiVersion/minor_version_tags_new_old_new.js
@@ -109,9 +109,7 @@
replTest.waitForState(replTest.nodes[nodeId], ReplSetTest.State.PRIMARY, 60 * 1000);
primary = replTest.getPrimary();
primary.forceWriteMode('commands');
- var writeConcern = {
- writeConcern: {w: expectedWritableNodes, wtimeout: 30 * 1000}
- };
+ var writeConcern = {writeConcern: {w: expectedWritableNodes, wtimeout: 30 * 1000}};
assert.writeOK(primary.getDB('foo').bar.insert({x: 100}, writeConcern));
return primary;
};
@@ -136,9 +134,7 @@
jsTestLog('partitions: nodes with each set of brackets [N1, N2, N3] form a complete network.');
jsTestLog('partitions: [0-1-2] [3] [4] (only nodes 0 and 1 can replicate from primary node 2');
- var doc = {
- x: 1
- };
+ var doc = {x: 1};
// This timeout should be shorter in duration than the server parameter maxSyncSourceLagSecs.
// Some writes are expected to block for this 'timeout' duration before failing.
@@ -151,9 +147,7 @@
primary = ensurePrimary(2, 3);
jsTestLog('Non-existent write concern should be rejected.');
- options = {
- writeConcern: {w: 'blahblah', wtimeout: timeout}
- };
+ options = {writeConcern: {w: 'blahblah', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
var result = assert.writeError(primary.getDB('foo').bar.insert(doc, options));
assert.neq(null, result.getWriteConcernError());
@@ -162,9 +156,7 @@
tojson(result.getWriteConcernError()));
jsTestLog('Write concern "3 or 4" should fail - 3 and 4 are not connected to the primary.');
- var options = {
- writeConcern: {w: '3 or 4', wtimeout: timeout}
- };
+ var options = {writeConcern: {w: '3 or 4', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
result = primary.getDB('foo').bar.insert(doc, options);
assert.neq(null, result.getWriteConcernError());
@@ -177,16 +169,12 @@
jsTestLog('Write concern "3 or 4" should work - 4 is now connected to the primary ' +
primary.host + ' via node 1 ' + replTest.nodes[1].host);
- options = {
- writeConcern: {w: '3 or 4', wtimeout: timeout}
- };
+ options = {writeConcern: {w: '3 or 4', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
assert.writeOK(primary.getDB('foo').bar.insert(doc, options));
jsTestLog('Write concern "3 and 4" should fail - 3 is not connected to the primary.');
- options = {
- writeConcern: {w: '3 and 4', wtimeout: timeout}
- };
+ options = {writeConcern: {w: '3 and 4', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
result = assert.writeError(primary.getDB('foo').bar.insert(doc, options));
assert.neq(null, result.getWriteConcernError());
@@ -201,31 +189,23 @@
jsTestLog('31003 should sync from 31004 (31024)');
jsTestLog('Write concern "3 and 4" should work - ' +
'nodes 3 and 4 are connected to primary via node 1.');
- options = {
- writeConcern: {w: '3 and 4', wtimeout: timeout}
- };
+ options = {writeConcern: {w: '3 and 4', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
assert.writeOK(primary.getDB('foo').bar.insert(doc, options));
jsTestLog('Write concern "2" - writes to primary only.');
- options = {
- writeConcern: {w: '2', wtimeout: 0}
- };
+ options = {writeConcern: {w: '2', wtimeout: 0}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
assert.writeOK(primary.getDB('foo').bar.insert(doc, options));
jsTestLog('Write concern "1 and 2"');
- options = {
- writeConcern: {w: '1 and 2', wtimeout: 0}
- };
+ options = {writeConcern: {w: '1 and 2', wtimeout: 0}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
assert.writeOK(primary.getDB('foo').bar.insert(doc, options));
jsTestLog('Write concern "2 dc and 3 server"');
primary = ensurePrimary(2, 5);
- options = {
- writeConcern: {w: '2 dc and 3 server', wtimeout: timeout}
- };
+ options = {writeConcern: {w: '2 dc and 3 server', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
assert.writeOK(primary.getDB('foo').bar.insert(doc, options));
@@ -250,17 +230,13 @@
primary = ensurePrimary(1, 4);
jsTestLog('Write concern "3 and 4" should still work with new primary node 1 ' + primary.host);
- options = {
- writeConcern: {w: '3 and 4', wtimeout: timeout}
- };
+ options = {writeConcern: {w: '3 and 4', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
assert.writeOK(primary.getDB('foo').bar.insert(doc, options));
jsTestLog('Write concern "2" should fail because node 2 ' + replTest.nodes[2].host +
' is down.');
- options = {
- writeConcern: {w: '2', wtimeout: timeout}
- };
+ options = {writeConcern: {w: '2', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
result = assert.writeError(primary.getDB('foo').bar.insert(doc, options));
assert.neq(null, result.getWriteConcernError());
diff --git a/jstests/multiVersion/minor_version_tags_old_new_old.js b/jstests/multiVersion/minor_version_tags_old_new_old.js
index 056aab2972a..1c3097da061 100644
--- a/jstests/multiVersion/minor_version_tags_old_new_old.js
+++ b/jstests/multiVersion/minor_version_tags_old_new_old.js
@@ -109,9 +109,7 @@
replTest.waitForState(replTest.nodes[nodeId], ReplSetTest.State.PRIMARY, 60 * 1000);
primary = replTest.getPrimary();
primary.forceWriteMode('commands');
- var writeConcern = {
- writeConcern: {w: expectedWritableNodes, wtimeout: 30 * 1000}
- };
+ var writeConcern = {writeConcern: {w: expectedWritableNodes, wtimeout: 30 * 1000}};
assert.writeOK(primary.getDB('foo').bar.insert({x: 100}, writeConcern));
return primary;
};
@@ -136,9 +134,7 @@
jsTestLog('partitions: nodes with each set of brackets [N1, N2, N3] form a complete network.');
jsTestLog('partitions: [0-1-2] [3] [4] (only nodes 0 and 1 can replicate from primary node 2');
- var doc = {
- x: 1
- };
+ var doc = {x: 1};
// This timeout should be shorter in duration than the server parameter maxSyncSourceLagSecs.
// Some writes are expected to block for this 'timeout' duration before failing.
@@ -151,9 +147,7 @@
primary = ensurePrimary(2, 3);
jsTestLog('Non-existent write concern should be rejected.');
- options = {
- writeConcern: {w: 'blahblah', wtimeout: timeout}
- };
+ options = {writeConcern: {w: 'blahblah', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
var result = assert.writeError(primary.getDB('foo').bar.insert(doc, options));
assert.neq(null, result.getWriteConcernError());
@@ -162,9 +156,7 @@
tojson(result.getWriteConcernError()));
jsTestLog('Write concern "3 or 4" should fail - 3 and 4 are not connected to the primary.');
- var options = {
- writeConcern: {w: '3 or 4', wtimeout: timeout}
- };
+ var options = {writeConcern: {w: '3 or 4', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
result = primary.getDB('foo').bar.insert(doc, options);
assert.neq(null, result.getWriteConcernError());
@@ -177,16 +169,12 @@
jsTestLog('Write concern "3 or 4" should work - 4 is now connected to the primary ' +
primary.host + ' via node 1 ' + replTest.nodes[1].host);
- options = {
- writeConcern: {w: '3 or 4', wtimeout: timeout}
- };
+ options = {writeConcern: {w: '3 or 4', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
assert.writeOK(primary.getDB('foo').bar.insert(doc, options));
jsTestLog('Write concern "3 and 4" should fail - 3 is not connected to the primary.');
- options = {
- writeConcern: {w: '3 and 4', wtimeout: timeout}
- };
+ options = {writeConcern: {w: '3 and 4', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
result = assert.writeError(primary.getDB('foo').bar.insert(doc, options));
assert.neq(null, result.getWriteConcernError());
@@ -201,31 +189,23 @@
jsTestLog('31003 should sync from 31004 (31024)');
jsTestLog('Write concern "3 and 4" should work - ' +
'nodes 3 and 4 are connected to primary via node 1.');
- options = {
- writeConcern: {w: '3 and 4', wtimeout: timeout}
- };
+ options = {writeConcern: {w: '3 and 4', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
assert.writeOK(primary.getDB('foo').bar.insert(doc, options));
jsTestLog('Write concern "2" - writes to primary only.');
- options = {
- writeConcern: {w: '2', wtimeout: 0}
- };
+ options = {writeConcern: {w: '2', wtimeout: 0}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
assert.writeOK(primary.getDB('foo').bar.insert(doc, options));
jsTestLog('Write concern "1 and 2"');
- options = {
- writeConcern: {w: '1 and 2', wtimeout: 0}
- };
+ options = {writeConcern: {w: '1 and 2', wtimeout: 0}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
assert.writeOK(primary.getDB('foo').bar.insert(doc, options));
jsTestLog('Write concern "2 dc and 3 server"');
primary = ensurePrimary(2, 5);
- options = {
- writeConcern: {w: '2 dc and 3 server', wtimeout: timeout}
- };
+ options = {writeConcern: {w: '2 dc and 3 server', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
assert.writeOK(primary.getDB('foo').bar.insert(doc, options));
@@ -250,17 +230,13 @@
primary = ensurePrimary(1, 4);
jsTestLog('Write concern "3 and 4" should still work with new primary node 1 ' + primary.host);
- options = {
- writeConcern: {w: '3 and 4', wtimeout: timeout}
- };
+ options = {writeConcern: {w: '3 and 4', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
assert.writeOK(primary.getDB('foo').bar.insert(doc, options));
jsTestLog('Write concern "2" should fail because node 2 ' + replTest.nodes[2].host +
' is down.');
- options = {
- writeConcern: {w: '2', wtimeout: timeout}
- };
+ options = {writeConcern: {w: '2', wtimeout: timeout}};
assert.writeOK(primary.getDB('foo').bar.insert(doc));
result = assert.writeError(primary.getDB('foo').bar.insert(doc, options));
assert.neq(null, result.getWriteConcernError());
diff --git a/jstests/multiVersion/mixed_storage_version_replication.js b/jstests/multiVersion/mixed_storage_version_replication.js
index 58c75803b4e..0973fbd85ff 100644
--- a/jstests/multiVersion/mixed_storage_version_replication.js
+++ b/jstests/multiVersion/mixed_storage_version_replication.js
@@ -211,9 +211,7 @@ var RandomOps = {
}
var field = this.randomChoice(this.fieldNames);
- var updateDoc = {
- $set: {}
- };
+ var updateDoc = {$set: {}};
updateDoc.$set[field] = this.randomChoice(this.fieldValues);
if (this.verbose) {
print("Updating:");
@@ -432,9 +430,8 @@ var RandomOps = {
if (this.verbose) {
print("Converting " + coll.getFullName() + " to a capped collection.");
}
- assert.commandWorked(
- conn.getDB(coll.getDB())
- .runCommand({convertToCapped: coll.getName(), size: 1024 * 1024}));
+ assert.commandWorked(conn.getDB(coll.getDB())
+ .runCommand({convertToCapped: coll.getName(), size: 1024 * 1024}));
if (this.verbose) {
print("done.");
}
@@ -671,18 +668,14 @@ function doMultiThreadedWork(primary, numThreads) {
nodes["n" + node] = setups[i];
node++;
}
- nodes["n" + 2 * setups.length] = {
- arbiter: true
- };
+ nodes["n" + 2 * setups.length] = {arbiter: true};
var replTest = new ReplSetTest({nodes: nodes, name: name});
var conns = replTest.startSet();
var config = replTest.getReplSetConfig();
// Make sure everyone is syncing from the primary, to ensure we have all combinations of
// primary/secondary syncing.
- config.settings = {
- chainingAllowed: false
- };
+ config.settings = {chainingAllowed: false};
config.protocolVersion = 0;
replTest.initiate(config);
// Ensure all are synced.
diff --git a/jstests/multiVersion/partial_index_upgrade.js b/jstests/multiVersion/partial_index_upgrade.js
index 474252b4dc8..b19631ae3b3 100644
--- a/jstests/multiVersion/partial_index_upgrade.js
+++ b/jstests/multiVersion/partial_index_upgrade.js
@@ -58,7 +58,10 @@
// The secondary should terminate when the command to build an invalid partial index replicates.
testCases.forEach(function(indexOptions) {
var replSetName = 'partial_index_replset';
- var nodes = [{binVersion: '3.0'}, {binVersion: 'latest'}, ];
+ var nodes = [
+ {binVersion: '3.0'},
+ {binVersion: 'latest'},
+ ];
var rst = new ReplSetTest({name: replSetName, nodes: nodes});
diff --git a/jstests/multiVersion/transitioning_to_and_from_WT.js b/jstests/multiVersion/transitioning_to_and_from_WT.js
index 97ac9b7af74..f51e21a2ef9 100644
--- a/jstests/multiVersion/transitioning_to_and_from_WT.js
+++ b/jstests/multiVersion/transitioning_to_and_from_WT.js
@@ -7,11 +7,10 @@
jsTestLog("Setting up initial data set with the last stable version of mongod");
- var toolTest = new ToolTest('transitioning_to_and_from_WT',
- {
- binVersion: MongoRunner.getBinVersionFor("last-stable"),
- storageEngine: "mmapv1",
- });
+ var toolTest = new ToolTest('transitioning_to_and_from_WT', {
+ binVersion: MongoRunner.getBinVersionFor("last-stable"),
+ storageEngine: "mmapv1",
+ });
toolTest.dbpath = toolTest.root + "/original/";
resetDbpath(toolTest.dbpath);
diff --git a/jstests/multiVersion/upgrade_cluster.js b/jstests/multiVersion/upgrade_cluster.js
index a7703d8c30d..033df67611e 100644
--- a/jstests/multiVersion/upgrade_cluster.js
+++ b/jstests/multiVersion/upgrade_cluster.js
@@ -32,8 +32,8 @@ load('./jstests/multiVersion/libs/multi_cluster.js');
var unshardedDB = mongos.getDB('unshareded');
assert.commandWorked(unshardedDB.runCommand({insert: 'foo', documents: [{x: 1}]}));
- assert.commandWorked(unshardedDB.runCommand(
- {update: 'foo', updates: [{q: {x: 1}, u: {$set: {y: 1}}}]}));
+ assert.commandWorked(
+ unshardedDB.runCommand({update: 'foo', updates: [{q: {x: 1}, u: {$set: {y: 1}}}]}));
var doc = unshardedDB.foo.findOne({x: 1});
assert.eq(1, doc.y);
assert.commandWorked(
diff --git a/jstests/multiVersion/wt_index_option_defaults_replset.js b/jstests/multiVersion/wt_index_option_defaults_replset.js
index 9156d0b06ae..af17bd182b8 100644
--- a/jstests/multiVersion/wt_index_option_defaults_replset.js
+++ b/jstests/multiVersion/wt_index_option_defaults_replset.js
@@ -32,9 +32,7 @@
var secondary30 = conns[1].getDB('test');
// Create a collection with "indexOptionDefaults" specified.
- var indexOptions = {
- storageEngine: {wiredTiger: {configString: 'prefix_compression=false'}}
- };
+ var indexOptions = {storageEngine: {wiredTiger: {configString: 'prefix_compression=false'}}};
assert.commandWorked(primary32.runCommand({create: 'coll', indexOptionDefaults: indexOptions}));
// Verify that the "indexOptionDefaults" field is present in the corresponding oplog entry.
@@ -90,9 +88,7 @@
var secondary32 = conns[1].getDB('test');
// Create a collection with "indexOptionDefaults" specified.
- var indexOptions = {
- storageEngine: {wiredTiger: {configString: 'prefix_compression=false'}}
- };
+ var indexOptions = {storageEngine: {wiredTiger: {configString: 'prefix_compression=false'}}};
assert.commandWorked(primary30.runCommand({create: 'coll', indexOptionDefaults: indexOptions}));
// Verify that the "indexOptionDefaults" field is present in the corresponding oplog entry.