diff options
| author | Marc Tamlyn <marc.tamlyn@gmail.com> | 2015-01-20 09:52:23 +0000 |
|---|---|---|
| committer | Marc Tamlyn <marc.tamlyn@gmail.com> | 2015-01-20 09:52:23 +0000 |
| commit | 0ae94d0d3127adabcb0afaf32fd5dbe47d74cd57 (patch) | |
| tree | c95dc40a567c646420481d14c25cb1cef82dc6ef /tests/postgres_tests | |
| parent | 61c102d010ef480cebe576cc1576d1101975925c (diff) | |
Fixes #24169 -- More arrayfield specific lookups.
varchar()[] cannot compare itself to text[]
Thanks to joelburton for the patch.
Diffstat (limited to 'tests/postgres_tests')
| -rw-r--r-- | tests/postgres_tests/test_array.py | 12 |
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), |
