1SET @@global.log_slow_rate_limit = -1;
2Warnings:
3Warning	1292	Truncated incorrect log_slow_rate_limit value: '-1'
4SELECT @@global.log_slow_rate_limit;
5@@global.log_slow_rate_limit
61
7SET @@global.log_slow_rate_limit = 0;
8Warnings:
9Warning	1292	Truncated incorrect log_slow_rate_limit value: '0'
10SELECT @@global.log_slow_rate_limit;
11@@global.log_slow_rate_limit
121
13SET @@global.log_slow_rate_limit = 1;
14SELECT @@global.log_slow_rate_limit;
15@@global.log_slow_rate_limit
161
17SET @@global.log_slow_rate_limit = 1000;
18SELECT @@global.log_slow_rate_limit;
19@@global.log_slow_rate_limit
201000
21SET @@global.log_slow_rate_limit = 1001;
22Warnings:
23Warning	1292	Truncated incorrect log_slow_rate_limit value: '1001'
24SELECT @@global.log_slow_rate_limit;
25@@global.log_slow_rate_limit
261000
27SET @@global.log_slow_rate_limit = default;
28