mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
MDEV-29620 Assertion `next_insert_id == 0' failed in handler::ha_external_lock
ha_release_auto_increment() must be done before F_UNLCK. Non-atomic case is handled by select_insert::binlog_query().
This commit is contained in:
@ -912,3 +912,8 @@ x
|
||||
77
|
||||
drop table t;
|
||||
set sql_mode= default;
|
||||
#
|
||||
# MDEV-29620 Assertion `next_insert_id == 0' failed in handler::ha_external_lock
|
||||
#
|
||||
create or replace table t1 (i serial) as select * from (values(1), (2)) dt;
|
||||
drop table t1;
|
||||
|
Reference in New Issue
Block a user