mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	 5b3c418b48
			
		
	
	5b3c418b48
	
	
	
		
			
			Note: The following tests fails - fulltext (Sergei has promised to fix) - rpl_charset (Guilhem should fix) - rpl_timezone (Dimitray has promised to fix) Sanja needs to check out the calling of close_thread_tables() in sp_head.cc
		
			
				
	
	
		
			28 lines
		
	
	
		
			601 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			601 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #
 | |
| # Running test with abort-slave-event-count=1
 | |
| # This will force slave to reconnect after every event
 | |
| #
 | |
| 
 | |
| require_manager;
 | |
| connect (master,localhost,root,,test,0,$MASTER_MYPORT);
 | |
| connect (slave,localhost,root,,test,0,slave.sock);
 | |
| connection master;
 | |
| reset master;
 | |
| server_stop master;
 | |
| server_start master;
 | |
| connection slave;
 | |
| reset slave;
 | |
| start slave;
 | |
| connection master;
 | |
| show binary logs;
 | |
| --disable_warnings
 | |
| drop table if exists t1;
 | |
| --enable_warnings
 | |
| create table t1(n int);
 | |
| insert into t1 values (3351);
 | |
| sync_slave_with_master;
 | |
| select * from t1;
 | |
| connection master;
 | |
| drop table t1;
 | |
| sync_slave_with_master;
 |