mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 20:36:16 +01:00 
			
		
		
		
	Rows_log_event::do_apply_event(): Correct the mistake that was made in
the merge 5f8561a6bc.
In Galera, the query cache will be invalidated near the end
of the function.
		
	
			
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			514 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			514 B
		
	
	
	
		
			Text
		
	
	
	
	
	
include/master-slave.inc
 | 
						|
[connection master]
 | 
						|
connection slave;
 | 
						|
SET @qtype= @@global.query_cache_type;
 | 
						|
SET GLOBAL query_cache_type= ON;
 | 
						|
SET query_cache_type= ON;
 | 
						|
connection master;
 | 
						|
create table t1 (i int) engine=innodb;
 | 
						|
insert into t1 set i=1;
 | 
						|
connection slave;
 | 
						|
select * from t1;
 | 
						|
i
 | 
						|
1
 | 
						|
connection master;
 | 
						|
insert into t1 set i=2;
 | 
						|
connection slave;
 | 
						|
select * from t1;
 | 
						|
i
 | 
						|
1
 | 
						|
2
 | 
						|
select sql_no_cache * from t1;
 | 
						|
i
 | 
						|
1
 | 
						|
2
 | 
						|
connection master;
 | 
						|
DROP TABLE t1;
 | 
						|
connection slave;
 | 
						|
SET GLOBAL query_cache_type= @qtype;
 | 
						|
include/rpl_end.inc
 |