mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			519 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			519 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
source include/master-slave.inc;
 | 
						|
 | 
						|
#
 | 
						|
# Test of init_slave variable
 | 
						|
#
 | 
						|
 | 
						|
save_master_pos;
 | 
						|
connection slave;
 | 
						|
sleep 1;
 | 
						|
show variables like 'init_slave';
 | 
						|
show variables like 'max_connections';
 | 
						|
sync_with_master;
 | 
						|
reset master;
 | 
						|
connection master;
 | 
						|
show variables like 'init_slave';
 | 
						|
show variables like 'max_connections';
 | 
						|
save_master_pos;
 | 
						|
connection slave;
 | 
						|
sync_with_master;
 | 
						|
set global init_connect="set @c=1";
 | 
						|
show variables like 'init_connect';
 | 
						|
connection master;
 | 
						|
save_master_pos;
 | 
						|
connection slave;
 | 
						|
sync_with_master;
 | 
						|
stop slave;
 |