summaryrefslogtreecommitdiff
path: root/mysql-test/suite/engines/funcs/t/rpl_init_slave.test
blob: 139b4902e122008ee1e5d3cc55097af8b8cbac0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
source include/master-slave.inc;

#
# Test of init_slave variable
#

save_master_pos;
connection slave;
sleep 1;
show variables like 'init_slave';
show variables like 'max_connections';
sync_with_master;
reset master;
connection master;
show variables like 'init_slave';
show variables like 'max_connections';
save_master_pos;
connection slave;
sync_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;
save_master_pos;
connection slave;
sync_with_master;
stop slave;

# Restore changed global variable
set global init_connect= @my_global_init_connect;
set global max_connections= default;

# End of 4.1 tests