| 180 | } |
| 181 | |
| 182 | static inline std::string strAppend(std::string& lhs, StringRef const& rhs) { |
| 183 | std::string r; |
| 184 | r.reserve(lhs.size() + rhs.size()); |
| 185 | r = lhs; |
| 186 | r += rhs; |
| 187 | return r; |
| 188 | } |
| 189 | |
| 190 | Optional<Reference<Plan>> IndexScanPlan::push_down(Reference<UnboundCollectionContext> cx, |
| 191 | Reference<IPredicate> query) { |