Opened 15 years ago
Closed 15 years ago
#12084 closed (fixed)
Document the return type of QuerySet.update()
Reported by: | anonymous | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.1 |
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
From the documentation: "The update() method is applied instantly and doesn't return anything […]"
This is not true. QuerySet.update()
returns the number of rows affected by the UPDATE
query, which is quite useful. The update tests rely on this feature. Make it part of the public API.
Attachments (1)
Change History (3)
by , 15 years ago
Attachment: | 12084.diff added |
---|
comment:1 by , 15 years ago
Has patch: | set |
---|---|
Triage Stage: | Unreviewed → Ready for checkin |
comment:2 by , 15 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [12181]) Fixed #12084 -- Documented the fact that QuerySet.update() returns the number of affected rows. Thanks, timo