| 189 | } |
| 190 | |
| 191 | Reference<Plan> planProjection(Reference<Plan> plan, |
| 192 | bson::BSONObj const& selector, |
| 193 | Optional<bson::BSONObj> const& ordering) { |
| 194 | return Reference<Plan>(new ProjectionPlan(parseProjection(selector), plan, ordering)); |
| 195 | } |
| 196 | |
| 197 | ExtMsgQuery::ExtMsgQuery(ExtMsgHeader* header, const uint8_t* body) : header(header) { |
| 198 | const uint8_t* ptr = body; |
no test coverage detected