mariadb/mysql-test/suite/rpl/t/rpl_init_slave.test
Patrick Crews 869e6bd19f Bug#44920: MTR2 is not processing master.opt input properly on Windows.
Had attempted to disable this test on Windows only, but the nature of this bug
does not allow for this.  The master.opt file is processed before anything in 
in the actual test.  As a result, we must use disabled.def files to ensure
these tests are skipped on the problematic platforms.

Removed Windows-only code and updated the proper disabled.def files accordingly.
2009-07-06 18:20:17 -04:00

34 lines
792 B
Text

source include/master-slave.inc;
#
# Test of init_slave variable
#
set global max_connections=151;
connection slave;
source include/stop_slave.inc;
source include/start_slave.inc;
connection master;
sync_slave_with_master;
show variables like 'init_slave';
show variables like 'max_connections';
reset master;
connection master;
show variables like 'init_slave';
show variables like 'max_connections';
sync_slave_with_master;
# Save variable value
set @my_global_init_connect= @@global.init_connect;
set global init_connect="set @c=1";
show variables like 'init_connect';
connection master;
sync_slave_with_master;
source include/stop_slave.inc;
# Restore changed global variable
set global init_connect= @my_global_init_connect;
set global max_connections= default;
# End of 4.1 tests