| 37 | } |
| 38 | |
| 39 | void IProcessor::setQueryPlanStep(IQueryPlanStep * step, size_t group) |
| 40 | { |
| 41 | query_plan_step = step; |
| 42 | query_plan_step_group = group; |
| 43 | if (step) |
| 44 | { |
| 45 | plan_step_name = step->getName(); |
| 46 | plan_step_description = step->getStepDescription(); |
| 47 | step_uniq_id = step->getUniqID(); |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | IProcessor::Status IProcessor::prepare() |
| 52 | { |
no test coverage detected