Fixed #29810 -- Fixed crash of select_related() on FilteredRelation with empty result.
This commit is contained in:
parent
6fd9c9daa6
commit
c00b4dbda2
|
@ -892,6 +892,8 @@ class SQLCompiler:
|
||||||
from_parent = issubclass(model, opts.model) and model is not opts.model
|
from_parent = issubclass(model, opts.model) and model is not opts.model
|
||||||
|
|
||||||
def local_setter(obj, from_obj):
|
def local_setter(obj, from_obj):
|
||||||
|
# Set a reverse fk object when relation is non-empty.
|
||||||
|
if from_obj:
|
||||||
f.remote_field.set_cached_value(from_obj, obj)
|
f.remote_field.set_cached_value(from_obj, obj)
|
||||||
|
|
||||||
def remote_setter(obj, from_obj):
|
def remote_setter(obj, from_obj):
|
||||||
|
|
|
@ -50,6 +50,12 @@ class FilteredRelationTests(TestCase):
|
||||||
(self.author2, self.book3, self.editor_b, self.author2),
|
(self.author2, self.book3, self.editor_b, self.author2),
|
||||||
], lambda x: (x, x.book_join, x.book_join.editor, x.book_join.author))
|
], lambda x: (x, x.book_join, x.book_join.editor, x.book_join.author))
|
||||||
|
|
||||||
|
def test_select_related_with_empty_relation(self):
|
||||||
|
qs = Author.objects.annotate(
|
||||||
|
book_join=FilteredRelation('book', condition=Q(pk=-1)),
|
||||||
|
).select_related('book_join').order_by('pk')
|
||||||
|
self.assertSequenceEqual(qs, [self.author1, self.author2])
|
||||||
|
|
||||||
def test_select_related_foreign_key(self):
|
def test_select_related_foreign_key(self):
|
||||||
qs = Book.objects.annotate(
|
qs = Book.objects.annotate(
|
||||||
author_join=FilteredRelation('author'),
|
author_join=FilteredRelation('author'),
|
||||||
|
|
Loading…
Reference in New Issue