mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.2 into 10.3
This commit is contained in:
@ -4382,6 +4382,19 @@ int handler::ha_repair(THD* thd, HA_CHECK_OPT* check_opt)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
End bulk insert
|
||||
*/
|
||||
|
||||
int handler::ha_end_bulk_insert()
|
||||
{
|
||||
DBUG_ENTER("handler::ha_end_bulk_insert");
|
||||
DBUG_EXECUTE_IF("crash_end_bulk_insert",
|
||||
{ extra(HA_EXTRA_FLUSH) ; DBUG_SUICIDE();});
|
||||
estimation_rows_to_insert= 0;
|
||||
DBUG_RETURN(end_bulk_insert());
|
||||
}
|
||||
|
||||
/**
|
||||
Bulk update row: public interface.
|
||||
|
||||
|
Reference in New Issue
Block a user