including in global SELECT_LEX list */
| 3366 | |
| 3367 | /* including in global SELECT_LEX list */ |
| 3368 | void st_select_lex_node::include_global(st_select_lex_node **plink) |
| 3369 | { |
| 3370 | if ((link_next= *plink)) |
| 3371 | link_next->link_prev= &link_next; |
| 3372 | link_prev= plink; |
| 3373 | *plink= this; |
| 3374 | } |
| 3375 | |
| 3376 | //excluding from global list (internal function) |
| 3377 | void st_select_lex_node::fast_exclude() |
no outgoing calls
no test coverage detected