summaryrefslogtreecommitdiff
path: root/tests/postgres_tests
diff options
context:
space:
mode:
authorMarc Tamlyn <marc.tamlyn@gmail.com>2015-01-20 09:52:23 +0000
committerMarc Tamlyn <marc.tamlyn@gmail.com>2015-01-20 10:26:32 +0000
commitc80b2144d22d29725cf4d584bfa9079dd35af064 (patch)
tree1dbcbc4ca9d945d1442b10a259245190a10c59a5 /tests/postgres_tests
parent504cd5d3be450376f462b66e36df6edc923e9496 (diff)
[1.8.x] Fixes #24169 -- More arrayfield specific lookups.
varchar()[] cannot compare itself to text[] Thanks to joelburton for the patch. Backport of 0ae94d0d31 from master
Diffstat (limited to 'tests/postgres_tests')
-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 5c300f7ea3..020b31658f 100644
--- a/tests/postgres_tests/test_array.py
+++ b/tests/postgres_tests/test_array.py
@@ -156,6 +156,18 @@ class TestQuerying(TestCase):
[]
)
+ def test_contained_by_charfield(self):
+ self.assertSequenceEqual(
+ CharArrayModel.objects.filter(field__contained_by=['text']),
+ []
+ )
+
+ def test_overlap_charfield(self):
+ self.assertSequenceEqual(
+ CharArrayModel.objects.filter(field__overlap=['text']),
+ []
+ )
+
def test_index(self):
self.assertSequenceEqual(
NullableIntegerArrayModel.objects.filter(field__0=2),