bench: remove support

This commit is contained in:
Eliot Horowitz
2011-06-23 10:56:37 -04:00
parent c4a92236f3
commit ea1de002b3

View File

@@ -138,6 +138,9 @@ namespace mongo {
if ( op == "findOne" ) {
conn->findOne( ns , fixQuery( e["query"].Obj() ) );
}
else if ( op == "remove" ) {
conn->remove( ns , fixQuery( e["query"].Obj() ) );
}
else if ( op == "update" ) {
conn->update( ns , fixQuery( e["query"].Obj() ) , e["update"].Obj() );
}