mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	 f4b8b6b9a3
			
		
	
	
	f4b8b6b9a3
	
	
	
		
			
			followup for e31e697f17
Fix the test not to fail on Mac OS X
(lower_case_table_names=0 prevents mysqld from starting on case insensitive
filesystem)
		
	
			
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			378 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			378 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| --source include/have_case_sensitive_file_system.inc
 | |
| --source include/have_innodb.inc
 | |
| --source include/master-slave.inc
 | |
| 
 | |
| --connection master
 | |
| create table RPL(a int);
 | |
| insert into RPL values(1);
 | |
| 
 | |
| --sync_slave_with_master
 | |
| select * from rpl;
 | |
| insert into RPL values(3);
 | |
| insert into rpl values(4);
 | |
| select * from rpl;
 | |
| 
 | |
| --connection master
 | |
| drop table RPL;
 | |
| 
 | |
| --source include/rpl_end.inc
 |