mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	 33346e26af
			
		
	
	33346e26af
	
	
	
		
			
			added string length for more speed made code covarage for print() method of Item fixed printability of some items (SCRUM) (WL#1274)
		
			
				
	
	
		
			17 lines
		
	
	
		
			559 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			559 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);
 | |
| explain extended 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;
 |