# saveSET@global_slow_query_log=@@global.slow_query_log;SET@global_log_output=@@global.log_output;################################################################################ Begin the functionality testing for slow_query_log ################################################################################SET@@session.long_query_time=1;SET@@global.log_output='TABLE';#=========================================--echo'----When slow_query_log = OFF----'#=========================================SET@@global.slow_query_log=OFF;TRUNCATEmysql.slow_log;SELECTsleep(2);SELECTcount(*)FROMmysql.slow_log;#=========================================--echo'----When slow_query_log = ON-----'#=========================================SET@@global.slow_query_log=ON;TRUNCATEmysql.slow_log;SELECTsleep(2);SELECTcount(*)FROMmysql.slow_log;#restoreSET@@global.log_output=@global_log_output;SET@global.slow_query_log=@global_slow_query_log;################################################################################ End of the functionality test for slow_query_log ################################################################################