mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
Backporting patch for Bug#46650 (Innodb assertion autoinc_lock == lock
in lock_table_remove_low on INSERT SELECT) to mysql-trunk.
This commit is contained in:
parent
ed1976f143
commit
8b72c02a25
1 changed files with 5 additions and 2 deletions
|
@ -3574,7 +3574,8 @@ lock_table_remove_low(
|
|||
and lock_grant()). Therefore it can be empty and we
|
||||
need to check for that. */
|
||||
|
||||
if (!ib_vector_is_empty(trx->autoinc_locks)) {
|
||||
if (!lock_get_wait(lock)
|
||||
&& !ib_vector_is_empty(trx->autoinc_locks)) {
|
||||
lock_t* autoinc_lock;
|
||||
|
||||
autoinc_lock = ib_vector_pop(trx->autoinc_locks);
|
||||
|
@ -3647,8 +3648,10 @@ lock_table_enqueue_waiting(
|
|||
|
||||
if (lock_deadlock_occurs(lock, trx)) {
|
||||
|
||||
lock_reset_lock_and_trx_wait(lock);
|
||||
/* The order here is important, we don't want to
|
||||
lose the state of the lock before calling remove. */
|
||||
lock_table_remove_low(lock);
|
||||
lock_reset_lock_and_trx_wait(lock);
|
||||
|
||||
return(DB_DEADLOCK);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue