mirror of
https://github.com/MariaDB/server.git
synced 2025-02-09 23:24:11 +01:00
![Monty](/assets/img/avatar_default.png)
Part of MDEV-13073 AliSQL Optimize performance of semisync Did the following renames to match other similar variables key_ss_mutex_LOCK_binlog_ > key_LOCK_bing key_ss_cond_COND_binlog_send_ -> key_COND_binlog_send COND_binlog_send_ -> COND_binlog_send LOCK_binlog_ -> LOCK_binlog debian/mariadb-server-10.2.install does not install semisync libs.
14 lines
288 B
Text
14 lines
288 B
Text
#
|
|
# MDEV-4066 semisync_master + temporary tables causes memory leaks
|
|
#
|
|
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;
|
|
|