Changes between Version 3 and Version 4 of Ticket #21760, comment 98
- Timestamp:
- 09/29/2016 09:56:53 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21760, comment 98
v3 v4 1 This is a before/after overview for the SQL queries with [attachment:21760. 7.patch]:1 This is a before/after overview for the SQL queries with [attachment:21760.8.patch]: 2 2 3 3 ==== get_term_by( 'slug' ) ==== … … 27 27 28 28 '''After:''' 29 > SELECT t.*, tt.* FROM wptests_terms AS t INNER JOIN wptests_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy IN ('category') AND t.term_id IN ( 4 ) LIMIT 129 > SELECT t.*, tt.* FROM wptests_terms AS t INNER JOIN wptests_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE t.term_id = 4" 30 30 31 31 [[BR]]