#724 closed defect (fixed)
get_next_by_pub_date/get_previous_by_pub_date model methods only see 1 item for each day.
Reported by: | Owned by: | Adrian Holovaty | |
---|---|---|---|
Component: | Core (Other) | Version: | |
Severity: | minor | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The model.get_next_by_pub_date() and model.get_previous_by_pub_date() methods appear to only see one item for each day.
For example, I have a blog.posts model in which pub_date is a DateTimeField. If there are multiple posts in one day, the above methods will only see the first post for each day, and then skip to the next day. This is clearly wrong behaviour; the method should retrieve the next item by date whether it was created the same day or not.
Example:
item1.pub_date = 2005/01/01 12:00 item2.pub_date = 2005/01/02 8:00 item3.pub_date = 2005/01/02 9:00 item1.get_next… = item2 item2.get_next… = None item3.get_prev… = item1
Attachments (1)
Change History (5)
comment:1 by , 19 years ago
Severity: | major → minor |
---|
comment:2 by , 19 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
In [1152] I added some unit tests for this. I can't recreate the problem -- the tests run fine. Please reopen with more information on how to recreate the bug.
comment:3 by , 19 years ago
Resolution: | invalid |
---|---|
Status: | closed → reopened |
I've added a few tests. Hopefully these help clarify the problem.
Index: tests/testapp/models/lookup.py =================================================================== --- tests/testapp/models/lookup.py (revision 1154) +++ tests/testapp/models/lookup.py (working copy) @@ -103,4 +103,16 @@ Article 4 >>> a5.get_previous_by_pub_date() Article 6 +>>> a4.get_previous_by_pub_date() +Article 3 +>>> a3.get_previous_by_pub_date() +Article 2 +>>> a2.get_previous_by_pub_date() +Article 1 +>>> a1.get_next_by_pub_date() +Article 2 +>>> a2.get_next_by_pub_date() +Article 3 +>>> a3.get_next_by_pub_date() +Article 4 """
comment:4 by , 19 years ago
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
In fact, it only has this problem if multiple items have the same time as well as the same date.
Example:
The above is valid; my first example, however, is wrong.