1
by brian
clean slate |
1 |
---- Init ---- |
2 |
set @my_slave_net_timeout =@@global.slave_net_timeout; |
|
3 |
---- Test ---- |
|
4 |
set global slave_net_timeout=100; |
|
5 |
set global sql_slave_skip_counter=100; |
|
6 |
show variables like 'slave_compressed_protocol'; |
|
7 |
Variable_name Value |
|
8 |
slave_compressed_protocol OFF |
|
9 |
show variables like 'slave_load_tmpdir'; |
|
10 |
Variable_name Value |
|
11 |
slave_load_tmpdir SLAVE_LOAD_TMPDIR |
|
12 |
show variables like 'slave_skip_errors'; |
|
13 |
Variable_name Value |
|
14 |
slave_skip_errors 3,100,137,643,1752 |
|
15 |
---- Clean Up ---- |
|
16 |
set global slave_net_timeout=default; |
|
17 |
set global sql_slave_skip_counter= 0; |