mirror of
https://github.com/django/django.git
synced 2025-11-25 05:04:26 +00:00
Refs #30897 -- Added test for SETTINGS option to Queryset.explain() on PostgreSQL 12+.
This commit is contained in:
parent
a5c5ae7d91
commit
6e9189c080
2 changed files with 6 additions and 0 deletions
|
|
@ -58,6 +58,8 @@ class ExplainTests(TestCase):
|
|||
]
|
||||
if connection.features.is_postgresql_10:
|
||||
test_options.append({'summary': True})
|
||||
if connection.features.is_postgresql_12:
|
||||
test_options.append({'settings': True})
|
||||
for options in test_options:
|
||||
with self.subTest(**options), transaction.atomic():
|
||||
with CaptureQueriesContext(connection) as captured_queries:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue