mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	Set innobase_flush_log_at_trx_commit to 1 by default Fix problem with timestamp on 64 bit systems Reserve alarms for up to 10 slave threads
		
			
				
	
	
		
			20 lines
		
	
	
		
			530 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			530 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
source include/master-slave.inc;
 | 
						|
drop database if exists test_$1;
 | 
						|
create database test_$1;
 | 
						|
create table test_$1.t1 ( n int);
 | 
						|
alter table test_$1.t1 add m int;
 | 
						|
insert into test_$1.t1 values (1,2);
 | 
						|
create table test_$1.t2 (n int);
 | 
						|
insert into test_$1.t2 values (45);
 | 
						|
rename table test_$1.t2 to test_$1.t3, test_$1.t1 to test_$1.t2;
 | 
						|
save_master_pos;
 | 
						|
connection slave;
 | 
						|
sync_with_master;
 | 
						|
select * from test_$1.t2;
 | 
						|
select * from test_$1.t3;
 | 
						|
connection master;
 | 
						|
drop database test_$1;
 | 
						|
save_master_pos;
 | 
						|
connection slave;
 | 
						|
sync_with_master;
 |