summaryrefslogtreecommitdiff
path: root/jstests/core/compact_keeps_indexes.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/compact_keeps_indexes.js')
-rw-r--r--jstests/core/compact_keeps_indexes.js22
1 files changed, 11 insertions, 11 deletions
diff --git a/jstests/core/compact_keeps_indexes.js b/jstests/core/compact_keeps_indexes.js
index 68f52c126f5..f2da7597cdf 100644
--- a/jstests/core/compact_keeps_indexes.js
+++ b/jstests/core/compact_keeps_indexes.js
@@ -8,22 +8,22 @@
var coll = db.compact_keeps_indexes;
coll.drop();
- coll.insert({_id:1, x:1});
- coll.ensureIndex({x:1});
+ coll.insert({_id: 1, x: 1});
+ coll.ensureIndex({x: 1});
assert.eq(coll.getIndexes().length, 2);
// force:true is for replset passthroughs
- var res = coll.runCommand('compact', {force:true});
+ var res = coll.runCommand('compact', {force: true});
// Some storage engines (for example, inMemoryExperiment) do not support the compact command.
- if (res.code == 115) { // CommandNotSupported
+ if (res.code == 115) { // CommandNotSupported
return;
}
assert.commandWorked(res);
assert.eq(coll.getIndexes().length, 2);
- assert.eq(coll.find({_id:1}).itcount(), 1);
- assert.eq(coll.find({x:1}).itcount(), 1);
+ assert.eq(coll.find({_id: 1}).itcount(), 1);
+ assert.eq(coll.find({x: 1}).itcount(), 1);
// Run compact repeatedly while simultaneously creating and dropping a collection in a
// different database.
@@ -31,19 +31,19 @@
// The test uses a single collection in the database test_compact_keeps_indexes_drop
// which triggers a series of slow resync operations in the slave as the collection is
// repeatedly created and dropped.
- var isMasterSlave = testingReplication &&
- !assert.commandWorked(db.isMaster()).hasOwnProperty('setName');
+ var isMasterSlave =
+ testingReplication && !assert.commandWorked(db.isMaster()).hasOwnProperty('setName');
if (!isMasterSlave) {
var dropCollectionShell = startParallelShell(function() {
var t = db.getSiblingDB('test_compact_keeps_indexes_drop').testcoll;
t.drop();
- for (var i=0; i<100; i++) {
+ for (var i = 0; i < 100; i++) {
t.save({a: 1});
t.drop();
}
});
- for (var i=0; i<10; i++) {
- coll.runCommand('compact');
+ for (var i = 0; i < 10; i++) {
+ coll.runCommand('compact');
}
dropCollectionShell();
}