(plan *pb.QueryPlan)
| 659 | } |
| 660 | |
| 661 | func processPlanWithStats(plan *pb.QueryPlan) (rows []Row, predicates []string, err error) { |
| 662 | return processPlanImpl(plan, true) |
| 663 | } |
| 664 | |
| 665 | func processPlanWithoutStats(plan *pb.QueryPlan) (rows []Row, predicates []string, err error) { |
| 666 | return processPlanImpl(plan, false) |
no test coverage detected