1default
2SELECT @@global.log_slow_sp_statements;
3@@global.log_slow_sp_statements
4ON
5SET GLOBAL log_slow_sp_statements = ON;
6SELECT @@global.log_slow_sp_statements;
7@@global.log_slow_sp_statements
8ON
9SET GLOBAL log_slow_sp_statements = OFF;
10SELECT @@global.log_slow_sp_statements;
11@@global.log_slow_sp_statements
12OFF
13SET GLOBAL log_slow_sp_statements = OFF_NO_CALLS;
14SELECT @@global.log_slow_sp_statements;
15@@global.log_slow_sp_statements
16OFF_NO_CALLS
17SET GLOBAL log_slow_sp_statements = FALSE;
18SELECT @@global.log_slow_sp_statements;
19@@global.log_slow_sp_statements
20OFF
21SET GLOBAL log_slow_sp_statements = TRUE;
22SELECT @@global.log_slow_sp_statements;
23@@global.log_slow_sp_statements
24ON
25SET GLOBAL log_slow_sp_statements = 0;
26SELECT @@global.log_slow_sp_statements;
27@@global.log_slow_sp_statements
28OFF
29SET GLOBAL log_slow_sp_statements = 1;
30SELECT @@global.log_slow_sp_statements;
31@@global.log_slow_sp_statements
32ON
33