1
0
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:
Sergei Golubchik
2015-04-26 16:27:41 +02:00
parent 053143efe1
commit e26b2071be
3 changed files with 26 additions and 1 deletions

View File

@@ -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;