mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 23:34:34 +01:00
a5e248d402
- Updated slow_query_log_file_basic and general_log_file basis instead of the func version as the func version run good but the basic versions fail. - Sent innodb.test to dev@innodb.com. - variables.test has differences probably due to a bug in mtr or in the SET statement (see bug#39369). - general_log_file_basic.test and slow_query_log_file_bsaic.test have differences, which might be produced by the new mtr (see bug#38124).
18 lines
610 B
Text
18 lines
610 B
Text
---- Init ----
|
|
set @my_slave_net_timeout =@@global.slave_net_timeout;
|
|
---- Test ----
|
|
set global slave_net_timeout=100;
|
|
set global sql_slave_skip_counter=100;
|
|
show variables like 'slave_compressed_protocol';
|
|
Variable_name Value
|
|
slave_compressed_protocol OFF
|
|
show variables like 'slave_load_tmpdir';
|
|
Variable_name Value
|
|
slave_load_tmpdir SLAVE_LOAD_TMPDIR
|
|
show variables like 'slave_skip_errors';
|
|
Variable_name Value
|
|
slave_skip_errors 3,100,137,643,1752
|
|
---- Clean Up ----
|
|
set global slave_net_timeout=default;
|
|
set global sql_slave_skip_counter= 0;
|
|
set @@global.slave_net_timeout= @my_slave_net_timeout;
|