| 7669 | |
| 7670 | |
| 7671 | void mysql_init_delete(LEX *lex) |
| 7672 | { |
| 7673 | if (lex->with_cte_resolution) |
| 7674 | { |
| 7675 | // Save and clear lex->query_tables. |
| 7676 | lex->save_list.insert(lex->query_tables, &lex->query_tables); |
| 7677 | lex->query_tables_last= &lex->query_tables; |
| 7678 | } |
| 7679 | lex->init_select(); |
| 7680 | lex->first_select_lex()->limit_params.clear(); |
| 7681 | lex->unit.lim.clear(); |
| 7682 | } |
| 7683 | |
| 7684 | void mysql_init_multi_delete(LEX *lex) |
| 7685 | { |
nothing calls this directly
no test coverage detected