mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 02:46:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			393 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			393 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| --source include/master-slave.inc
 | |
| 
 | |
| create table t1 (n int);
 | |
| insert into t1 values(1);
 | |
| --sync_slave_with_master 
 | |
| --source include/stop_slave.inc
 | |
| --source include/start_slave.inc
 | |
| connection master;
 | |
| insert into t1 values(2);
 | |
| #let slave catch up
 | |
| --sync_slave_with_master
 | |
| select * from t1;
 | |
| connection master;
 | |
| drop table t1;
 | |
| --sync_slave_with_master
 | |
| 
 | |
| # End of 4.1 tests
 | |
| --source include/rpl_end.inc
 | 
