| 9729 | */ |
| 9730 | |
| 9731 | bool update_precheck(THD *thd, TABLE_LIST *tables) |
| 9732 | { |
| 9733 | DBUG_ENTER("update_precheck"); |
| 9734 | if (thd->lex->first_select_lex()->item_list.elements != |
| 9735 | thd->lex->value_list.elements) |
| 9736 | { |
| 9737 | my_message(ER_WRONG_VALUE_COUNT, ER_THD(thd, ER_WRONG_VALUE_COUNT), MYF(0)); |
| 9738 | DBUG_RETURN(TRUE); |
| 9739 | } |
| 9740 | DBUG_RETURN(check_one_table_access(thd, UPDATE_ACL, tables)); |
| 9741 | } |
| 9742 | |
| 9743 | |
| 9744 | /** |
no test coverage detected