Changes between Initial Version and Version 6 of Ticket #32449
- Timestamp:
- 06/17/2015 05:39:02 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32449
- Property Focuses administration added
-
Property
Component
changed from
GeneraltoDatabase -
Property
Version
changed from
4.2.2to4.2
-
Ticket #32449 – Description
initial v6 1 1 It looks like the changes to indexes for utf8_mb4 is breaking this query. 2 2 3 {{{ 3 4 SELECT meta_key 4 FROM $wpdb->postmeta5 FROM wp_postmeta 5 6 GROUP BY meta_key 6 HAVING meta_key NOT LIKE %s7 HAVING meta_key NOT LIKE '\\_%' 7 8 ORDER BY meta_key 8 LIMIT %d"; 9 LIMIT 30 10 }}} 9 11 10 12 Its always doing a full table scan now. On a site with 7 million rows in postmeta this takes a long time.