summaryrefslogtreecommitdiff
path: root/tests/postgres_tests/test_array.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/postgres_tests/test_array.py')
-rw-r--r--tests/postgres_tests/test_array.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/postgres_tests/test_array.py b/tests/postgres_tests/test_array.py
index c23ed9fe0c..fc4687b68c 100644
--- a/tests/postgres_tests/test_array.py
+++ b/tests/postgres_tests/test_array.py
@@ -241,6 +241,18 @@ class TestQuerying(PostgreSQLTestCase):
NullableIntegerArrayModel.objects.filter(field__exact=[1]), self.objs[:1]
)
+ def test_exact_null_only_array(self):
+ obj = NullableIntegerArrayModel.objects.create(
+ field=[None], field_nested=[None, None]
+ )
+ self.assertSequenceEqual(
+ NullableIntegerArrayModel.objects.filter(field__exact=[None]), [obj]
+ )
+ self.assertSequenceEqual(
+ NullableIntegerArrayModel.objects.filter(field_nested__exact=[None, None]),
+ [obj],
+ )
+
def test_exact_with_expression(self):
self.assertSequenceEqual(
NullableIntegerArrayModel.objects.filter(field__exact=[Value(1)]),