| 82 | } |
| 83 | |
| 84 | Optional<Reference<Plan>> FilterPlan::push_down(Reference<UnboundCollectionContext> cx, Reference<IPredicate> query) { |
| 85 | return ref(new FilterPlan(cx, source, ref(new AndPredicate(filter, query))->simplify())); |
| 86 | } |
| 87 | |
| 88 | Optional<Reference<Plan>> TableScanPlan::push_down(Reference<UnboundCollectionContext> cx, |
| 89 | Reference<IPredicate> query) { |
no test coverage detected