mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00
MDEV-7938 MariaDB Crashes Suddenly while writing binlogs
on disconnect THD must clean user_var_events array before dropping temporary tables. Otherwise when binlogging a DROP, it'll access user_var_events, but they were allocated in the already freed memroot.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
create table t1 (i int);
|
||||
create trigger tr after insert on t1 for each row set @b=@a;
|
||||
create temporary table tmp like t1;
|
||||
insert into t1 values (1);
|
||||
select * from t1;
|
||||
i
|
||||
1
|
||||
drop table t1;
|
Reference in New Issue
Block a user