Opened 7 years ago
Closed 7 years ago
#29320 closed Bug (fixed)
Add an exception when an annotation alias matches a ForeignKey attname
Reported by: | Flávio Juvenal | Owned by: | Flávio Juvenal |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | dev |
Severity: | Normal | 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 (last modified by )
Looks like the solution for "#11256 Fail loudly and clearly when an Annotation alias matches a field name" doesn't consider foreign keys attname
s, e.g. author_id
.
Here's a failing test, add it to aggregation_regress/tests.py:
def test_fk_attname_conflict(self): msg = "The annotation 'contact_id' conflicts with a field on the model." with self.assertRaisesMessage(ValueError, msg): Book.objects.annotate(contact_id=F('publisher_id'))
Change History (4)
comment:1 by , 7 years ago
Description: | modified (diff) |
---|---|
Owner: | changed from | to
comment:2 by , 7 years ago
Description: | modified (diff) |
---|
comment:3 by , 7 years ago
Summary: | No exception when an Annotation alias matches a ForeignKey attname → Add an exception when an annotation alias matches a ForeignKey attname |
---|---|
Triage Stage: | Unreviewed → Ready for checkin |
comment:4 by , 7 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
In e1f13f15: