mirror of
https://github.com/django/django.git
synced 2025-08-06 11:58:26 +00:00
Refs #29722 -- Added introspection of partitions for PostgreSQL.
This commit is contained in:
parent
0607699902
commit
ebd270627c
6 changed files with 77 additions and 18 deletions
|
@ -73,3 +73,4 @@ class DatabaseFeatures(BaseDatabaseFeatures):
|
|||
has_gin_pending_list_limit = property(operator.attrgetter('is_postgresql_9_5'))
|
||||
supports_ignore_conflicts = property(operator.attrgetter('is_postgresql_9_5'))
|
||||
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