mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
0d25ee4f13
fix semisync plugins and tests to work with both with static and dynamic linking
15 lines
322 B
Text
15 lines
322 B
Text
#
|
|
# MDEV-4066 semisync_master + temporary tables causes memory leaks
|
|
#
|
|
source include/have_semisync.inc;
|
|
source include/have_binlog_format_row.inc;
|
|
source include/master-slave.inc;
|
|
|
|
connection master;
|
|
|
|
--connect (con1,localhost,root,,)
|
|
CREATE TEMPORARY TABLE tmp (i INT);
|
|
--disconnect con1
|
|
|
|
source include/rpl_end.inc;
|
|
|