mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	slave SQL thread is started. sql/slave.cc: Adding threads to init as parameter to init_master_info. Only rewind read position when starting SQL thread. sql/slave.h: Adding threads to init as parameter to init_master_info. Only rewind read position when starting SQL thread. sql/sql_repl.cc: Adding threads to init as parameter to init_master_info. Only rewind read position when starting SQL thread. sql/repl_failsafe.cc: Adding threads to init as parameter to init_master_info. Only rewind read position when starting SQL thread.
		
			
				
	
	
		
			35 lines
		
	
	
		
			482 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			482 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
source include/master-slave.inc;
 | 
						|
 | 
						|
#
 | 
						|
# Bug#6148 ()
 | 
						|
#
 | 
						|
connection slave;
 | 
						|
stop slave;
 | 
						|
 | 
						|
# Let the master do lots of insertions
 | 
						|
connection master;
 | 
						|
create table t1(n int);
 | 
						|
let $1=5000;
 | 
						|
disable_query_log;
 | 
						|
while ($1)
 | 
						|
{
 | 
						|
 eval insert into t1 values($1);
 | 
						|
 dec $1;
 | 
						|
}
 | 
						|
enable_query_log;
 | 
						|
save_master_pos;
 | 
						|
 | 
						|
connection slave;
 | 
						|
start slave;
 | 
						|
sleep 1;
 | 
						|
stop slave io_thread;
 | 
						|
start slave io_thread;
 | 
						|
sync_with_master;
 | 
						|
 | 
						|
connection master;
 | 
						|
drop table t1;
 | 
						|
save_master_pos;
 | 
						|
 | 
						|
connection slave;
 | 
						|
sync_with_master;
 |