Opened 15 years ago
Last modified 13 years ago
#13293 closed
r12900 breaks extra() with additional select clauses — at Initial Version
Reported by: | Matthias Kestenholz | Owned by: | nobody |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | dev |
Severity: | Keywords: | MySQL | |
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
[12900] breaks the following query:
Page.objects.filter(...).extra(select={'_url_length': 'LENGTH(_cached_url)'}).order_by('-_url_length')[0]
LENGTH(_cached_url) is prepended to the list of fields which should be selected, which makes the row tuple one element longer than the fields tuple:
http://code.djangoproject.com/browser/django/trunk/django/db/backends/mysql/compiler.py#L6
Note that this bug only manifests itself under the following conditions:
- The first model field is an AutoField
- The second field is a (Null)?BooleanField
- The retrieved model has a PK of 1L (0L would also work, but auto incrementing primary key fields never have a value of 0L)
The resulting model instance has True instead of 1L as its PK.
Note:
See TracTickets
for help on using tickets.
Now with a regression test