Opened 16 years ago

Closed 16 years ago

Last modified 12 years ago

#7957 closed (duplicate)

Chaining Queryset.extra() methods that contain parameters breaks the query

Reported by: Matthijs Owned by: Malcolm Tredinnick
Component: Database layer (models, ORM) Version: dev
Severity: Keywords: queryset extra select select_params
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Malcolm Tredinnick)

To reproduce:

Precondition a user 'root' exists with id=1

from django.contrib.auth.models import User
for result in User.objects.extra(select=
        {'foo3': "SELECT COUNT(auth_user.id) FROM auth_user WHERE (auth_user.username = %s)"}
        , select_params=['root']).extra(select=
        {'foo2': "SELECT COUNT(auth_user.id) FROM auth_user WHERE (auth_user.id = %s)"}
        , select_params=['1']):
    print result.foo3
# output should be:
# 1
# 1
for result in User.objects.extra(select=
        {'foo1': "SELECT COUNT(auth_user.id) FROM auth_user WHERE (auth_user.username = %s)"}
        , select_params=['root']).extra(select=
        {'foo2': "SELECT COUNT(auth_user.id) FROM auth_user WHERE (auth_user.id = %s)"}
        , select_params=['1']):
    print result.foo1
# output should be:
# 1
# 1

Attachments (2)

django_extra.diff (1.3 KB ) - added by Matthijs 16 years ago.
patch to fix extra().extra() problem
reproduce_extra_problem.py (801 bytes ) - added by Matthijs 16 years ago.
file that demonstrated bug

Download all attachments as: .zip

Change History (10)

by Matthijs, 16 years ago

Attachment: django_extra.diff added

patch to fix extra().extra() problem

by Matthijs, 16 years ago

Attachment: reproduce_extra_problem.py added

file that demonstrated bug

comment:1 by Matthijs, 16 years ago

Resolution: fixed
Status: newclosed

comment:2 by Matthijs, 16 years ago

Resolution: fixed
Status: closedreopened

comment:3 by Malcolm Tredinnick, 16 years ago

Description: modified (diff)
milestone: 1.0 beta1.0
Triage Stage: UnreviewedAccepted

The patch looks like it's along the right lines, although I don't really like adding an append() method to the sorted dictionary. That's a bit of API creep that we can probably avoid.

Fixed milestone and description.

in reply to:  3 comment:4 by Matthijs, 16 years ago

Replying to mtredinnick:

The patch looks like it's along the right lines, although I don't really like adding an append() method to the sorted dictionary. That's a bit of API creep that we can probably avoid.


I see the SortedDict more as a list with an additional dict interface. But I am curious how you would solve it.

Also if you are going to work on this ticket you might want to check out ticket #7961 as well since it reports and solves an additional bug in this area of the code.

comment:5 by Malcolm Tredinnick, 16 years ago

Owner: changed from Matthijs to Malcolm Tredinnick
Status: reopenednew

comment:6 by Malcolm Tredinnick, 16 years ago

Resolution: duplicate
Status: newclosed

Closing as a dupe of #8191, which is for the broader problem. This ticket is a symptom of the larger problem with extra's parameter handling. Fix isn't hard, but I can't do it in isolation from #7961.

comment:7 by Malcolm Tredinnick, 16 years ago

(In [8426]) Changed the (internal) way extra(select=.., select_params=...) handling is done
so that parameters stay with their select items. This means that merging and
trimming of those items is handled correctly.

Refs #7957, #7961. Fixed #8191.

comment:6 by Jacob, 12 years ago

milestone: 1.0

Milestone 1.0 deleted

Note: See TracTickets for help on using tickets.
Back to Top