Closed (won't fix)
Project:
Drupal core
Version:
4.6.3
Component:
taxonomy.module
Priority:
Minor
Category:
Task
Assigned:
Reporter:
Created:
18 Aug 2005 at 21:06 UTC
Updated:
27 Nov 2005 at 16:35 UTC
The current query on which taxonomy_node_form is based is of the form:
SELECT v.*, n.type FROM [...]
But the code does not make use of any of the results except v.vid, using DB server resources uselessly. Patch reduces the query to
SELECT v.vid FROM [...]
This reduces the size of the result set and, to some extent, the work to be performed by the DB server.
| Comment | File | Size | Author |
|---|---|---|---|
| taxonomy.module.cvs.patch | 614 bytes | fgm |
Comments
Comment #1
fgmDries ported it to HEAD for 4.7 and says it won't be included in the 4.6.x branch
See http://drupal.org/node/29151 for details.