diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-09-20 13:45:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-20 13:45:51 +0200 |
| commit | 2c6ebb65c9eb6b11347d907127b82d31e04569e5 (patch) | |
| tree | 9fb8a476675fd382ea17fd6aa5c59a14a1e86bc8 /tests/queries | |
| parent | 0b506bfe1ab9f1c38e439c77b3c3f81c8ac663ea (diff) | |
Fixed #34851 -- Dropped support for PostgreSQL 12 and PostGIS 2.5.
Diffstat (limited to 'tests/queries')
| -rw-r--r-- | tests/queries/test_explain.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/queries/test_explain.py b/tests/queries/test_explain.py index 11684356b9..f04153754b 100644 --- a/tests/queries/test_explain.py +++ b/tests/queries/test_explain.py @@ -83,9 +83,8 @@ class ExplainTests(TestCase): {"verbose": False, "timing": False, "analyze": True}, {"summary": True}, {"settings": True}, + {"analyze": True, "wal": True}, ] - if connection.features.is_postgresql_13: - test_options.append({"analyze": True, "wal": True}) for options in test_options: with self.subTest(**options), transaction.atomic(): with CaptureQueriesContext(connection) as captured_queries: |
