summaryrefslogtreecommitdiff
path: root/jstests/index9.js
blob: c83278310b3c7e81f998a91d67c29fe2017d76b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
t = db.jstests_index9;

t.drop();
db.createCollection( "jstests_index9", {autoIndexId:false} );
t.createIndex( { _id:1 } );
assert.eq( 1, db.system.indexes.count( {ns: "test.jstests_index9"} ) );
t.createIndex( { _id:1 } );
assert.eq( 1, db.system.indexes.count( {ns: "test.jstests_index9"} ) );

t.drop();
t.createIndex( { _id:1 } );
assert.eq( 1, db.system.indexes.count( {ns: "test.jstests_index9"} ) );

t.drop();
t.save( {a:1} );
t.createIndex( { _id:1 } );
assert.eq( 1, db.system.indexes.count( {ns: "test.jstests_index9"} ) );