Opened 15 years ago

Closed 15 years ago

Last modified 13 years ago

#10631 closed (invalid)

Documentation: SQL for second exclude example is incorrect

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

Description

See http://docs.djangoproject.com/en/dev/ref/models/querysets/#exclude-kwargs

The second example has AND instead of OR.

SELECT ...
WHERE NOT pub_date > '2005-1-3'
AND NOT headline = 'Hello'

Should be:

SELECT ...
WHERE NOT pub_date > '2005-1-3'
OR NOT headline = 'Hello'

Attachments (1)

ticket_10631.diff (393 bytes ) - added by adamfast 15 years ago.
Doc fix

Download all attachments as: .zip

Change History (4)

by adamfast, 15 years ago

Attachment: ticket_10631.diff added

Doc fix

comment:1 by adamfast, 15 years ago

Has patch: set
milestone: 1.1
Triage Stage: UnreviewedReady for checkin

comment:2 by Gary Wilson, 15 years ago

Resolution: invalid
Status: newclosed

The AND is correct here.

comment:3 by Jacob, 13 years ago

milestone: 1.1

Milestone 1.1 deleted

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