fix: refs #7818 entry_splitByShelving #2818

Merged
robert merged 1 commits from 7818-entry_splitByShelving into master 2024-07-31 09:43:40 +00:00
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$$