| 12031 | */ |
| 12032 | |
| 12033 | void LEX::relink_hack(st_select_lex *select_lex) |
| 12034 | { |
| 12035 | if (!select_stack_top) // Statements of the second type |
| 12036 | { |
| 12037 | if (!select_lex->outer_select()) |
| 12038 | { |
| 12039 | builtin_select.register_unit(select_lex->master_unit(), |
| 12040 | &builtin_select.context); |
| 12041 | builtin_select.add_statistics(select_lex->master_unit()); |
| 12042 | } |
| 12043 | } |
| 12044 | } |
| 12045 | |
| 12046 | |
| 12047 | bool SELECT_LEX_UNIT::set_lock_to_the_last_select(Lex_select_lock l) |
no test coverage detected