| 1130 | |
| 1131 | |
| 1132 | void mysql_init_multi_delete(LEX *lex) |
| 1133 | { |
| 1134 | lex->sql_command= SQLCOM_DELETE_MULTI; |
| 1135 | mysql_init_select(lex); |
| 1136 | lex->select_lex.select_limit= 0; |
| 1137 | lex->unit.select_limit_cnt= HA_POS_ERROR; |
| 1138 | lex->select_lex.table_list.save_and_clear(&lex->auxiliary_table_list); |
| 1139 | lex->query_tables= 0; |
| 1140 | lex->query_tables_last= &lex->query_tables; |
| 1141 | } |
| 1142 | |
| 1143 | |
| 1144 | /* |
nothing calls this directly
no test coverage detected