| 231 | } |
| 232 | |
| 233 | std::string ExtMsgQuery::toString() { |
| 234 | return format("QUERY: %s, collection=%s, flags=%d, numberToSkip=%d, numberToReturn=%d (%s)", |
| 235 | query.toString(false, true).c_str(), fullCollNameToString(ns).c_str(), flags, numberToSkip, |
| 236 | numberToReturn, header->toString().c_str()); |
| 237 | } |
| 238 | |
| 239 | ACTOR Future<Void> runCommand(Reference<ExtConnection> nmc, |
| 240 | Reference<ExtMsgQuery> query, |
no test coverage detected