| 1806 | } |
| 1807 | |
| 1808 | Reference<Plan> deletePlan(Reference<Plan> subPlan, Reference<UnboundCollectionContext> cx, int64_t limit) { |
| 1809 | return Reference<Plan>( |
| 1810 | new UpdatePlan(subPlan, Reference<IUpdateOp>(new DeleteDocument()), Reference<IInsertOp>(), limit, cx)); |
| 1811 | } |
| 1812 | |
| 1813 | Reference<Plan> flushChanges(Reference<Plan> subPlan) { |
| 1814 | return Reference<Plan>(new FlushChangesPlan(subPlan)); |
no outgoing calls
no test coverage detected