fix(util): refs #7205 fix util.slowLog_prune
gitea/salix/pipeline/pr-master This commit looks good Details

This commit is contained in:
Juan Ferrer 2024-04-12 09:21:34 +02:00
parent cb1bb4ebc4
commit 622075a9aa
1 changed files with 9 additions and 1 deletions

View File

@ -6,11 +6,19 @@ BEGIN
*/
DECLARE vSlowQueryLog INT DEFAULT @@slow_query_log;
DECLARE vSqlLogBin INT DEFAULT @@SESSION.sql_log_bin;
DECLARE vLogExists BOOL;
SET sql_log_bin = OFF;
SET GLOBAL slow_query_log = OFF;
RENAME TABLE `mysql`.`slow_log` TO `mysql`.`slow_log_temp`;
SELECT COUNT(*) INTO vLogExists
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = 'mysql' AND TABLE_NAME = 'slow_log';
IF vLogExists THEN
DROP TEMPORARY TABLE IF EXISTS `mysql`.`slow_log_temp`;
RENAME TABLE `mysql`.`slow_log` TO `mysql`.`slow_log_temp`;
END IF;
DELETE FROM `mysql`.`slow_log_temp`
WHERE start_time < TIMESTAMPADD(WEEK, -1, util.VN_NOW());