mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			493 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			493 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # See if master_pos_wait(,,timeout)
 | |
| # Terminates with "timeout expired" (-1)
 | |
| source include/master-slave.inc;
 | |
| save_master_pos;
 | |
| connection slave;
 | |
| sync_with_master;
 | |
| # Ask for a master log that has certainly not been reached yet
 | |
| # timeout= 2 seconds
 | |
| select master_pos_wait('master-bin.999999',0,2);
 | |
| # Testcase for bug 651 (master_pos_wait() hangs if slave idle and STOP SLAVE).
 | |
| send select master_pos_wait('master-bin.999999',0);
 | |
| connection slave1;
 | |
| stop slave sql_thread;
 | |
| connection slave;
 | |
| reap;
 | 
