| 3050 | */ |
| 3051 | |
| 3052 | bool Sql_cmd_update::processing_as_multitable_update_prohibited(THD *thd) |
| 3053 | { |
| 3054 | SELECT_LEX *const select_lex = thd->lex->first_select_lex(); |
| 3055 | return |
| 3056 | (select_lex->order_list.elements && |
| 3057 | select_lex->limit_params.select_limit); |
| 3058 | } |
| 3059 | |
| 3060 | |
| 3061 | /** |
no test coverage detected