mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +01:00
869e6bd19f
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.
34 lines
792 B
Text
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
|