Merge pull request 'fix: refs #7818 entry_splitByShelving' (!2818) from 7818-entry_splitByShelving into master
gitea/salix/pipeline/head This commit looks good Details

Reviewed-on: #2818
Reviewed-by: Guillermo Bonet <guillermo@verdnatura.es>
This commit is contained in:
Robert Ferrús 2024-07-31 09:43:38 +00:00
commit 892a0ef960
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ BEGIN
UPDATE itemShelving
SET isSplit = TRUE
WHERE shelvingFk = vShelvingFk;
WHERE shelvingFk = vShelvingFk COLLATE utf8_general_ci;
END LOOP;
CLOSE cur;
END$$