mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-27 05:56:07 +03:00 
			
		
		
		
	 70f619856b
			
		
	
	70f619856b
	
	
	
		
			
			updated manual about table lock counter fixed coredump in DROP DATABASE with long bogus name by non-root user fixed bug in handling STOP immediately after ROTATE added test case for buffer overrun on DROP DATABASE by non-root user added test case for the STOP bug in replication
		
			
				
	
	
		
			20 lines
		
	
	
		
			434 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			434 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| connect (master,localhost,root,,test,0,mysql-master.sock);
 | |
| connect (slave,localhost,root,,test,0,mysql-slave.sock);
 | |
| connection slave;
 | |
| reset slave;
 | |
| slave start;
 | |
| connection master;
 | |
| show master logs;
 | |
| drop table if exists t1;
 | |
| create table t1(n int);
 | |
| insert into t1 values (3351);
 | |
| save_master_pos;
 | |
| connection slave;
 | |
| sync_with_master;
 | |
| select * from t1;
 | |
| connection master;
 | |
| drop table t1;
 | |
| save_master_pos;
 | |
| connection slave;
 | |
| sync_with_master;
 |