mirror of
https://github.com/MariaDB/server.git
synced 2025-06-15 00:02:46 +03:00
Merge branch bb-10.2-release into bb-10.3-release
This commit is contained in:
@ -1798,9 +1798,10 @@ int write_record(THD *thd, TABLE *table,COPY_INFO *info)
|
||||
in handler methods for the just read row in record[1].
|
||||
*/
|
||||
table->move_fields(table->field, table->record[1], table->record[0]);
|
||||
if (table->update_virtual_fields(table->file, VCOL_UPDATE_FOR_REPLACE))
|
||||
goto err;
|
||||
int verr = table->update_virtual_fields(table->file, VCOL_UPDATE_FOR_REPLACE);
|
||||
table->move_fields(table->field, table->record[0], table->record[1]);
|
||||
if (verr)
|
||||
goto err;
|
||||
}
|
||||
if (info->handle_duplicates == DUP_UPDATE)
|
||||
{
|
||||
|
Reference in New Issue
Block a user