mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	 2e53b96a0a
			
		
	
	
	2e53b96a0a
	
	
	
		
			
			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;
 | |
| 
 |