From b05dfc289429dc4de990617da543af681d6638c7 Mon Sep 17 00:00:00 2001 From: David Smith <39445562+smithdc1@users.noreply.github.com> Date: Sun, 5 Mar 2023 18:06:21 +0000 Subject: [PATCH] Refs #34381, Refs #10929 -- Fixed postgres_tests.test_aggregates.TestGeneralAggretate.test_empty_result_set() on PostgreSQL 14+. Follow up to 0be8095b254fad65b2480d677ebe6098c41bbad6. --- tests/postgres_tests/test_aggregates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/postgres_tests/test_aggregates.py b/tests/postgres_tests/test_aggregates.py index 902135b18c..bb694dae63 100644 --- a/tests/postgres_tests/test_aggregates.py +++ b/tests/postgres_tests/test_aggregates.py @@ -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.