mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
b8d449505d
The crash appeared to be a result of allocating an instance of Discrete_interval automatically that that was referred in out-of-declaration scope. Fixed with correcting backing up and restoring scheme of auto_inc_intervals_forced, introduced by bug#33029, by means of shallow copying; added simulation code that forces executing those fixes of the former bug that targeted at master-and-slave having incompatible bug#33029-prone versions.
25 lines
524 B
Text
25 lines
524 B
Text
#
|
|
# Bug #36443 Server crashes when executing insert when insert trigger on table
|
|
#
|
|
# Emulating the former bug#33029 situation to see that there is no crash anymore.
|
|
#
|
|
|
|
|
|
source include/master-slave.inc;
|
|
|
|
create table `t1` (`id` int not null auto_increment primary key);
|
|
create trigger `trg` before insert on `t1` for each row begin end;
|
|
|
|
sync_slave_with_master;
|
|
set @@global.debug="+d,simulate_bug33029";
|
|
|
|
stop slave;
|
|
start slave;
|
|
|
|
connection master;
|
|
|
|
insert into `t1` values ();
|
|
|
|
sync_slave_with_master;
|
|
select * from t1;
|
|
|