| 1446 | return ref(new ExtOperatorUpdate(msgUpdate)); |
| 1447 | } |
| 1448 | Reference<IUpdateOp> replaceUpdate(bson::BSONObj const& replaceWith) { |
| 1449 | return ref(new ExtReplaceUpdate(replaceWith)); |
| 1450 | } |
| 1451 | Reference<IInsertOp> simpleUpsert(bson::BSONObj const& selector, bson::BSONObj const& update) { |
| 1452 | return ref(new ExtSimpleUpsert(selector, update)); |
| 1453 | } |
no test coverage detected