Commit b3e02d19 authored by Alex Gaynor's avatar Alex Gaynor
Browse files

[1.2.X] Fixed #14011 -- Doing a subquery with __in and an EmptyQuerySet no...

[1.2.X] Fixed #14011 -- Doing a subquery with __in and an EmptyQuerySet no longer raises an Exception.  This is actually just a test for this, it was fixed by [14085].  Thanks to skatei for the report and mk for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14087 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent bb66cb84
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -87,3 +87,8 @@ class EmptyQuerySetTests(TestCase):
    def test_emptyqueryset_values(self):
        "#14366 -- calling .values() on an EmptyQuerySet and then cloning that should not cause an error"
        self.assertEqual(list(Number.objects.none().values('num').order_by('num')), [])
    
    def test_values_subquery(self):
        self.assertQuerysetEqual(
            Number.objects.filter(pk__in=Number.objects.none().values("pk")), []
        )