| 84 | |
| 85 | |
| 86 | Explain_node *Explain_query::get_node(uint select_id) |
| 87 | { |
| 88 | Explain_union *u; |
| 89 | if ((u= get_union(select_id))) |
| 90 | return u; |
| 91 | else |
| 92 | return get_select(select_id); |
| 93 | } |
| 94 | |
| 95 | Explain_union *Explain_query::get_union(uint select_id) |
| 96 | { |
no outgoing calls
no test coverage detected