#10631 closed (invalid)
Documentation: SQL for second exclude example is incorrect
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'
Change History (4)
by , 16 years ago
Attachment: | ticket_10631.diff added |
---|
comment:1 by , 16 years ago
Has patch: | set |
---|---|
milestone: | → 1.1 |
Triage Stage: | Unreviewed → Ready for checkin |
Note:
See TracTickets
for help on using tickets.
Doc fix