feat: refs #8227 Minor change
gitea/salix/pipeline/pr-test There was a failure building this commit Details

This commit is contained in:
Guillermo Bonet 2025-02-10 13:06:05 +01:00
parent e19e50de14
commit 75b6867be8
1 changed files with 3 additions and 3 deletions

View File

@ -40,8 +40,8 @@ BEGIN
WHERE w.id = NEW.driverChangeFk);
END IF;
IF @trigger_active IS NULL THEN
SET @trigger_active = TRUE;
IF @roadmapTriggerIsActive IS NULL THEN
SET @roadmapTriggerIsActive = TRUE;
IF NOT (NEW.etd <=> OLD.etd) THEN
SET vSeconds = TIME_TO_SEC(TIMEDIFF(NEW.etd, OLD.etd));
@ -55,7 +55,7 @@ BEGIN
END IF;
END IF;
SET @trigger_active = NULL;
SET @roadmapTriggerIsActive = NULL;
END IF;
END$$
DELIMITER ;