mirror of
https://github.com/MariaDB/server.git
synced 2025-02-09 23:24:11 +01:00
![Sergei Golubchik](/assets/img/avatar_default.png)
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
|