Kaydet (Commit) ceab25bc authored tarafından Tomer Chachamu's avatar Tomer Chachamu Kaydeden (comit) Mariusz Felisiak

Refs #28762 -- Added test for aggregating over a function with ArrayField parameters.

Fixed in d87bd29c.
üst 654614b3
...@@ -385,6 +385,17 @@ class TestQuerying(PostgreSQLTestCase): ...@@ -385,6 +385,17 @@ class TestQuerying(PostgreSQLTestCase):
with self.assertRaisesMessage(FieldError, msg): with self.assertRaisesMessage(FieldError, msg):
list(NullableIntegerArrayModel.objects.filter(field__0bar=[2])) list(NullableIntegerArrayModel.objects.filter(field__0bar=[2]))
def test_grouping_by_annotations_with_array_field_param(self):
value = models.Value([1], output_field=ArrayField(models.IntegerField()))
self.assertEqual(
NullableIntegerArrayModel.objects.annotate(
array_length=models.Func(value, 1, function='ARRAY_LENGTH'),
).values('array_length').annotate(
count=models.Count('pk'),
).get()['array_length'],
1,
)
class TestDateTimeExactQuerying(PostgreSQLTestCase): class TestDateTimeExactQuerying(PostgreSQLTestCase):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment