mirror of
https://github.com/django/django.git
synced 2025-08-19 02:01:29 +00:00
Fixed #33717 -- Dropped support for PostgreSQL 11.
This commit is contained in:
parent
9f55489529
commit
981c23c0cc
17 changed files with 22 additions and 118 deletions
|
@ -82,9 +82,8 @@ class ExplainTests(TestCase):
|
|||
{"verbose": True, "timing": True, "analyze": True},
|
||||
{"verbose": False, "timing": False, "analyze": True},
|
||||
{"summary": True},
|
||||
{"settings": True},
|
||||
]
|
||||
if connection.features.is_postgresql_12:
|
||||
test_options.append({"settings": True})
|
||||
if connection.features.is_postgresql_13:
|
||||
test_options.append({"analyze": True, "wal": True})
|
||||
for options in test_options:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue