mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	 1f6ecc0cd3
			
		
	
	1f6ecc0cd3
	
	
	
		
			
			Cleaned up test; Removed wrong DROP TABLE commands and use standard table and database names. changed store_warning() -> push_warning_print()
		
			
				
	
	
		
			19 lines
		
	
	
		
			436 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			436 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # This tests the offset off by 22 mystery bug
 | |
| # Must run slave with --disconnect-slave-event-count=1 --master-connect-retry=1
 | |
| 
 | |
| source include/master-slave.inc;
 | |
| 
 | |
| create table t1 (n int not null auto_increment primary key);
 | |
| insert into t1 values(NULL);
 | |
| insert into t1 values(2);
 | |
| save_master_pos;
 | |
| connection slave;
 | |
| sync_with_master;
 | |
| select n from t1;
 | |
| connection master;
 | |
| drop table t1;
 | |
| save_master_pos;
 | |
| connection slave;
 | |
| sync_with_master;
 | |
| 
 |