summaryrefslogtreecommitdiff
path: root/jstests/core/index_sparse1.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/index_sparse1.js')
-rw-r--r--jstests/core/index_sparse1.js58
1 files changed, 29 insertions, 29 deletions
diff --git a/jstests/core/index_sparse1.js b/jstests/core/index_sparse1.js
index 1a525f53d8a..950c8a8d797 100644
--- a/jstests/core/index_sparse1.js
+++ b/jstests/core/index_sparse1.js
@@ -2,44 +2,44 @@
t = db.index_sparse1;
t.drop();
-t.insert( { _id : 1 , x : 1 } )
-t.insert( { _id : 2 , x : 2 } )
-t.insert( { _id : 3 , x : 2 } )
-t.insert( { _id : 4 } )
-t.insert( { _id : 5 } )
-
-assert.eq( 5 , t.count() , "A1" )
-assert.eq( 5 , t.find().sort( { x : 1 } ).itcount() , "A2" )
-
-t.ensureIndex( { x : 1 } )
-assert.eq( 2 , t.getIndexes().length , "B1" )
-assert.eq( 5 , t.find().sort( { x : 1 } ).itcount() , "B2" )
-t.dropIndex( { x : 1 } )
-assert.eq( 1 , t.getIndexes().length , "B3" )
-
-t.ensureIndex( { x : 1 } , { sparse : 1 } )
-assert.eq( 2 , t.getIndexes().length , "C1" )
-assert.eq( 5 , t.find().sort( { x : 1 } ).itcount() , "C2" )
-t.dropIndex( { x : 1 } )
-assert.eq( 1 , t.getIndexes().length , "C3" )
+t.insert( { _id : 1 , x : 1 } );
+t.insert( { _id : 2 , x : 2 } );
+t.insert( { _id : 3 , x : 2 } );
+t.insert( { _id : 4 } );
+t.insert( { _id : 5 } );
+
+assert.eq( 5 , t.count() , "A1" );
+assert.eq( 5 , t.find().sort( { x : 1 } ).itcount() , "A2" );
+
+t.ensureIndex( { x : 1 } );
+assert.eq( 2 , t.getIndexes().length , "B1" );
+assert.eq( 5 , t.find().sort( { x : 1 } ).itcount() , "B2" );
+t.dropIndex( { x : 1 } );
+assert.eq( 1 , t.getIndexes().length , "B3" );
+
+t.ensureIndex( { x : 1 } , { sparse : 1 } );
+assert.eq( 2 , t.getIndexes().length , "C1" );
+assert.eq( 5 , t.find().sort( { x : 1 } ).itcount() , "C2" );
+t.dropIndex( { x : 1 } );
+assert.eq( 1 , t.getIndexes().length , "C3" );
// -- sparse & unique
-t.remove( { _id : 2 } )
+t.remove( { _id : 2 } );
// test that we can't create a unique index without sparse
assert.commandFailed( t.ensureIndex( { x : 1 } , { unique : 1 } ));
-assert.eq( 1 , t.getIndexes().length , "D2" )
+assert.eq( 1 , t.getIndexes().length , "D2" );
-t.ensureIndex( { x : 1 } , { unique : 1 , sparse : 1 } )
-assert.eq( 2 , t.getIndexes().length , "E1" )
-t.dropIndex( { x : 1 } )
-assert.eq( 1 , t.getIndexes().length , "E3" )
+t.ensureIndex( { x : 1 } , { unique : 1 , sparse : 1 } );
+assert.eq( 2 , t.getIndexes().length , "E1" );
+t.dropIndex( { x : 1 } );
+assert.eq( 1 , t.getIndexes().length , "E3" );
-t.insert( { _id : 2 , x : 2 } )
-t.ensureIndex( { x : 1 } , { unique : 1 , sparse : 1 } )
-assert.eq( 1 , t.getIndexes().length , "F1" )
+t.insert( { _id : 2 , x : 2 } );
+t.ensureIndex( { x : 1 } , { unique : 1 , sparse : 1 } );
+assert.eq( 1 , t.getIndexes().length , "F1" );