mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	duplicate key entries on slave" (two concurrrent connections doing multi-row INSERT DELAYED to insert into an auto_increment column, caused replication slave to stop with "duplicate key error" (and binlog was wrong)), and BUG#26116 "If multi-row INSERT DELAYED has errors, statement-based binlogging breaks" (the binlog was not accounting for all rows inserted, or slave could stop). The fix is that: if (statement-based) binlogging is on, a multi-row INSERT DELAYED is silently converted to a non-delayed INSERT. Note: it is not possible to test BUG#25507 in 5.0 (requires mysqlslap), so it is tested only in the changeset for 5.1. However, BUG#26116 is tested here, and the fix for BUG#25507 is the same code change.
		
			
				
	
	
		
			14 lines
		
	
	
		
			467 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			467 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
drop table if exists t1;
 | 
						|
create table t1 (c1 char(5) unique not null, c2 int, stamp timestamp) engine=innodb;
 | 
						|
select * from t1;
 | 
						|
c1	c2	stamp
 | 
						|
replace delayed into t1 (c1, c2)  values ( "text1","11");
 | 
						|
ERROR HY000: Table storage engine for 't1' doesn't have this option
 | 
						|
select * from t1;
 | 
						|
c1	c2	stamp
 | 
						|
replace delayed into t1 (c1, c2)  values ( "text1","12");
 | 
						|
ERROR HY000: Table storage engine for 't1' doesn't have this option
 | 
						|
select * from t1;
 | 
						|
c1	c2	stamp
 | 
						|
drop table t1;
 |