From 2a7c59cd885b4c9f0584015c34c17c9ebca6d417 Mon Sep 17 00:00:00 2001 From: Andriy Sokolovskiy Date: Thu, 4 Jun 2015 16:15:25 +0100 Subject: Added missing tests for transforms usage with subquery for PostgreSQL fields --- tests/postgres_tests/test_array.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests/postgres_tests/test_array.py') diff --git a/tests/postgres_tests/test_array.py b/tests/postgres_tests/test_array.py index a893a95406..d152f76b3d 100644 --- a/tests/postgres_tests/test_array.py +++ b/tests/postgres_tests/test_array.py @@ -228,6 +228,14 @@ class TestQuerying(PostgreSQLTestCase): [instance] ) + def test_usage_in_subquery(self): + self.assertSequenceEqual( + NullableIntegerArrayModel.objects.filter( + id__in=NullableIntegerArrayModel.objects.filter(field__len=3) + ), + [self.objs[3]] + ) + class TestChecks(PostgreSQLTestCase): -- cgit v1.3