mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Fixed #33816 -- Fixed QuerySet.only() after select_related() crash on proxy models.
This commit is contained in:
parent
5eb6a2b33d
commit
425718726b
2 changed files with 7 additions and 0 deletions
|
@ -395,6 +395,12 @@ class ProxyModelTests(TestCase):
|
|||
p = MyPerson.objects.get(pk=100)
|
||||
self.assertEqual(p.name, "Elvis Presley")
|
||||
|
||||
def test_select_related_only(self):
|
||||
user = ProxyTrackerUser.objects.create(name="Joe Doe", status="test")
|
||||
issue = Issue.objects.create(summary="New issue", assignee=user)
|
||||
qs = Issue.objects.select_related("assignee").only("assignee__status")
|
||||
self.assertEqual(qs.get(), issue)
|
||||
|
||||
def test_eq(self):
|
||||
self.assertEqual(MyPerson(id=100), Person(id=100))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue