Opened 9 years ago
Closed 9 years ago
#34871 closed defect (bug) (fixed)
dbDelta Lowercase KEY Keyword Duplicates Indexes
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 4.6 | 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.
Creates duplicate indexes:
create table x ( id mediumint(8) not null autoincrement, key id (id) )
Does not create duplicate indexes:
create table x ( id mediumint(8) not null autoincrement, KEY id (id) )
Change History (2)
Note: See
TracTickets for help on using
tickets.
In 37583: