mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
18 lines
402 B
JavaScript
18 lines
402 B
JavaScript
|
|
t = db.evalb;
|
|
t.drop();
|
|
|
|
t.save( { x : 3 } );
|
|
|
|
assert.eq( 3, db.eval( function(){ return db.evalb.findOne().x; } ) , "A" );
|
|
|
|
db.setProfilingLevel( 2 );
|
|
|
|
assert.eq( 3, db.eval( function(){ return db.evalb.findOne().x; } ) , "B" );
|
|
|
|
o = db.system.profile.find().sort( { $natural : -1 } ).limit(1).next();
|
|
assert( o.info.indexOf( "findOne().x" ) > 0 , "C : " + tojson( o ) )
|
|
|
|
db.setProfilingLevel( 0 );
|
|
|