Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#15875 closed Bug (fixed)

F() example in db queries topic guide has an error

Reported by: Jeff Blaine Owned by: nobody
Component: Documentation Version: 1.3
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

http://docs.djangoproject.com/en/1.3/topics/db/queries/#filters-can-reference-fields-on-the-model

I'm thinking this is incorrect. The F() object references the pingback count, no?

For example, to find a list of all blog entries that have had more comments than
pingbacks, we construct an F() object to reference the comment count, and use
that F() object in the query:

>>> from django.db.models import F
>>> Entry.objects.filter(n_comments__gt=F('n_pingbacks'))

Attachments (1)

15875.diff (588 bytes ) - added by koen.biermans@… 13 years ago.

Download all attachments as: .zip

Change History (6)

comment:1 by Alex Gaynor, 13 years ago

Easy pickings: set
Triage Stage: UnreviewedAccepted

by koen.biermans@…, 13 years ago

Attachment: 15875.diff added

comment:2 by koen.biermans@…, 13 years ago

Has patch: set

comment:3 by Jacob, 13 years ago

Triage Stage: AcceptedReady for checkin

comment:4 by Tim Graham, 13 years ago

Resolution: fixed
Status: newclosed

In [16096]:

(The changeset message doesn't reference this ticket)

comment:5 by Tim Graham, 13 years ago

In [16097]:

[1.3.X] Fixed #15875 - typo in F() example; thanks jblaine.

Backport of r16096 from trunk.

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