refactor: refs #7567 Minor change
gitea/salix/pipeline/pr-dev Build queued... Details

This commit is contained in:
Guillermo Bonet 2024-07-18 14:12:37 +02:00
parent 4757ce11a3
commit 625b3a5608
1 changed files with 4 additions and 3 deletions

View File

@ -7,6 +7,8 @@ BEGIN
DECLARE vExpeditionFk INT;
DECLARE vBufferToFk INT;
DECLARE vBufferFromFk INT;
DECLARE vStateOutFk INT
DEFAULT (SELECT id FROM expeditionState WHERE `description` = 'OUT');
DECLARE vDone BOOL DEFAULT FALSE;
DECLARE vSorter CURSOR FOR
SELECT m.expeditionFk, m.bufferToFk, m.bufferFromFk
@ -52,10 +54,10 @@ BEGIN
OR (bufferFk = vBufferFromFk AND `position` > 0)
FOR UPDATE;
UPDATE expedition
UPDATE expedition
SET bufferFk = NULL,
`position` = NULL,
stateFk = (SELECT id FROM expeditionState WHERE `description` = 'OUT')
stateFk = vStateOutFk
WHERE id = vExpeditionFk;
UPDATE expedition
@ -64,7 +66,6 @@ BEGIN
AND `position` > 0;
COMMIT;
END LOOP l;
CLOSE vSorter;
END$$