Merge pull request #5420 from stohrendorf/fix-cpe-fix

This commit is contained in:
Niklas 2025-10-17 20:44:57 +02:00 committed by GitHub
commit 2688b1f90f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -47,9 +47,9 @@ public class v4135Updater extends AbstractUpgradeItem {
SET "PART" = LOWER("PART"), SET "PART" = LOWER("PART"),
"VENDOR" = LOWER("VENDOR"), "VENDOR" = LOWER("VENDOR"),
"PRODUCT" = LOWER("PRODUCT") "PRODUCT" = LOWER("PRODUCT")
WHERE "PART <> LOWER("PART") WHERE "PART" <> LOWER("PART")
OR "VENDOR <> LOWER("VENDOR") OR "VENDOR" <> LOWER("VENDOR")
OR "PRODUCT <> LOWER("PRODUCT")" OR "PRODUCT" <> LOWER("PRODUCT")
"""); """);
} }
} }