| 13044 | */ |
| 13045 | |
| 13046 | JOIN_TAB *first_explain_order_tab(JOIN* join) |
| 13047 | { |
| 13048 | JOIN_TAB* tab; |
| 13049 | tab= join->join_tab; |
| 13050 | if (!tab) |
| 13051 | return NULL; /* Can happen when the tables were optimized away */ |
| 13052 | return (tab->bush_children) ? tab->bush_children->start : tab; |
| 13053 | } |
| 13054 | |
| 13055 | |
| 13056 | JOIN_TAB *next_explain_order_tab(JOIN* join, JOIN_TAB* tab) |
no outgoing calls
no test coverage detected