Files
mongo/jstests/core/explain3.js
Randolph Tan 5595b94560 SERVER-12127 migrate js tests to jscore suite when not related to writes
Moved test jstest/[a-i].js -> jstests/core/ and made changes to comply with write command api
2014-02-28 16:26:33 -05:00

24 lines
483 B
JavaScript

/** SERVER-2451 Kill cursor while explain is yielding */
t = db.jstests_explain3;
t.drop();
t.ensureIndex( {i:1} );
for( var i = 0; i < 10000; ++i ) {
t.save( {i:i,j:0} );
}
s = startParallelShell( "sleep( 20 ); db.jstests_explain3.dropIndex( {i:1} );" );
try {
t.find( {i:{$gt:-1},j:1} ).hint( {i:1} ).explain()
} catch (e) {
print( "got exception" );
printjson( e );
}
s();
// Sanity check to make sure mongod didn't seg fault.
assert.eq( 10000, t.count() );