Opened 9 years ago
Closed 8 years ago
#34874 closed defect (bug) (fixed)
dbDelta Case Sensitive Key Names Duplicates Indexes
Reported by: | charlestonsw | Owned by: | pento |
---|---|---|---|
Milestone: | 4.7 | Priority: | normal |
Severity: | normal | Version: | 3.5.1 |
Component: | Database | Keywords: | |
Focuses: | performance | Cc: |
Description
Reference ticket #10404.
This is to decompose the original ticket into components. May be fixed in 4.4. Needs testing.
Using an uppercase index name will create duplicate indexes:
KEY MY_KEY ( SLUG ),
This works:
KEY my_key ( slug ),
Change History (3)
Note: See
TracTickets for help on using
tickets.
I can confirm that this bug is still present in trunk.
From the MySQL reference:
So this ticket is correct that we shouldn't be treating indexes as if they are case sensitive.