| 8424 | */ |
| 8425 | |
| 8426 | void st_select_lex::add_joined_table(TABLE_LIST *table) |
| 8427 | { |
| 8428 | DBUG_ENTER("add_joined_table"); |
| 8429 | join_list->push_front(table, parent_lex->thd->mem_root); |
| 8430 | table->join_list= join_list; |
| 8431 | table->embedding= embedding; |
| 8432 | DBUG_VOID_RETURN; |
| 8433 | } |
| 8434 | |
| 8435 | |
| 8436 | /** |
no test coverage detected