mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 23:34:34 +01:00
6 lines
191 B
Text
6 lines
191 B
Text
|
SET @old_general_log= @@global.general_log;
|
||
|
SET @old_slow_query_log= @@global.slow_query_log;
|
||
|
ok
|
||
|
SET @@global.general_log= @old_general_log;
|
||
|
SET @@global.slow_query_log= @old_slow_query_log;
|