| 11367 | |
| 11368 | |
| 11369 | void st_select_lex_unit::register_select_chain(SELECT_LEX *first_sel) |
| 11370 | { |
| 11371 | DBUG_ASSERT(first_sel != 0); |
| 11372 | slave= first_sel; |
| 11373 | first_sel->prev= &slave; |
| 11374 | for(SELECT_LEX *sel=first_sel; sel; sel= sel->next_select()) |
| 11375 | { |
| 11376 | sel->master= (st_select_lex_node *)this; |
| 11377 | uncacheable|= sel->uncacheable; |
| 11378 | } |
| 11379 | } |
| 11380 | |
| 11381 | |
| 11382 | void st_select_lex::register_unit(SELECT_LEX_UNIT *unit, |
no test coverage detected