| 13087 | |
| 13088 | |
| 13089 | JOIN_TAB *next_top_level_tab(JOIN *join, JOIN_TAB *tab) |
| 13090 | { |
| 13091 | tab= next_breadth_first_tab(join->first_breadth_first_tab(), |
| 13092 | join->top_join_tab_count, tab); |
| 13093 | if (tab && tab->bush_root_tab) |
| 13094 | tab= NULL; |
| 13095 | return tab; |
| 13096 | } |
| 13097 | |
| 13098 | |
| 13099 | JOIN_TAB *first_linear_tab(JOIN *join, |
no test coverage detected