mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
e26b2071be
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.
17 lines
400 B
Text
17 lines
400 B
Text
#
|
|
# MDEV-7938 MariaDB Crashes Suddenly while writing binlogs
|
|
#
|
|
--source include/have_log_bin.inc
|
|
--source include/have_binlog_format_mixed.inc
|
|
|
|
--connect(con1,localhost,root,,)
|
|
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);
|
|
--disconnect con1
|
|
|
|
--connection default
|
|
select * from t1;
|
|
drop table t1;
|