mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge branch '10.8' into 10.9
This commit is contained in:
@ -523,7 +523,8 @@ int mysql_update(THD *thd,
|
||||
DBUG_RETURN(1); /* purecov: inspected */
|
||||
}
|
||||
|
||||
if (table_list->table->check_assignability_explicit_fields(fields, values))
|
||||
if (table_list->table->check_assignability_explicit_fields(fields, values,
|
||||
ignore))
|
||||
DBUG_RETURN(true);
|
||||
|
||||
if (check_unique_table(thd, table_list))
|
||||
@ -2093,7 +2094,8 @@ int multi_update::prepare(List<Item> ¬_used_values,
|
||||
|
||||
int error= setup_fields(thd, Ref_ptr_array(),
|
||||
*values, MARK_COLUMNS_READ, 0, NULL, 0) ||
|
||||
TABLE::check_assignability_explicit_fields(*fields, *values);
|
||||
TABLE::check_assignability_explicit_fields(*fields, *values,
|
||||
ignore);
|
||||
|
||||
ti.rewind();
|
||||
while ((table_ref= ti++))
|
||||
|
Reference in New Issue
Block a user