Opened 14 years ago
Closed 14 years ago
#11741 closed defect (bug) (fixed)
Over-optimization in meta_form()
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 3.0 | Priority: | normal |
Severity: | normal | Version: | 2.9 |
Component: | Optimization | Keywords: | has-patch commit |
Focuses: | Cc: |
Description
The meta_form() function is the only one in WP that does a query that uses LOWER().
I believe we introduced an over-optimization in the changeset that added the LOWER() statement. We could strip it, since we're using a natcasesort() immediately after. This would additionally allow to use the index on the meta_key column.
Attachments (1)
Change History (6)
Note: See
TracTickets for help on using
tickets.
see also #9684