0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
mongodb/jstests/indexa.js
2009-06-18 13:34:01 -04:00

21 lines
392 B
JavaScript

t = db.indexa;
t.drop();
t.ensureIndex( { x:1 }, true );
t.insert( { 'x':'A' } );
t.insert( { 'x':'B' } );
t.insert( { 'x':'A' } );
assert.eq( 2 , t.count() , "A" );
t.update( {x:'B'}, { x:'A' } );
a = t.find().toArray();
u = a.map( function(z){ return z.x } ).unique();
print("test commented out in indexa.js...");
//assert( a.length == u.length , "unique index update is broken" );