mirror of
https://github.com/django/django.git
synced 2025-01-30 20:19:22 +00:00
Refs #34381, Refs #10929 -- Fixed postgres_tests.test_aggregates.TestGeneralAggretate.test_empty_result_set() on PostgreSQL 14+.
Follow up to 0be8095b254fad65b2480d677ebe6098c41bbad6.
This commit is contained in:
parent
a4205076a5
commit
b05dfc2894
@ -98,7 +98,7 @@ class TestGeneralAggregate(PostgreSQLTestCase):
|
||||
StringAgg("char_field", delimiter=";"),
|
||||
]
|
||||
if connection.features.has_bit_xor:
|
||||
tests.append((BitXor("integer_field"), None))
|
||||
tests.append(BitXor("integer_field"))
|
||||
for aggregation in tests:
|
||||
with self.subTest(aggregation=aggregation):
|
||||
# Empty result with non-execution optimization.
|
||||
|
Loading…
x
Reference in New Issue
Block a user