mirror of
https://github.com/django/django.git
synced 2025-08-06 11:58: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
|
@ -64,6 +64,10 @@ class DatabaseFeatures(BaseDatabaseFeatures):
|
|||
def is_postgresql_10(self):
|
||||
return self.connection.pg_version >= 100000
|
||||
|
||||
@cached_property
|
||||
def is_postgresql_12(self):
|
||||
return self.connection.pg_version >= 120000
|
||||
|
||||
has_brin_autosummarize = property(operator.attrgetter('is_postgresql_10'))
|
||||
has_phraseto_tsquery = property(operator.attrgetter('is_postgresql_9_6'))
|
||||
supports_table_partitions = property(operator.attrgetter('is_postgresql_10'))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue