(plan *pb.QueryPlan)
| 663 | } |
| 664 | |
| 665 | func processPlanWithoutStats(plan *pb.QueryPlan) (rows []Row, predicates []string, err error) { |
| 666 | return processPlanImpl(plan, false) |
| 667 | } |
| 668 | |
| 669 | func processPlanImpl(plan *pb.QueryPlan, withStats bool) (rows []Row, predicates []string, err error) { |
| 670 | planNodes := plan.GetPlanNodes() |
no test coverage detected