diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2018-11-26 19:45:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-26 19:45:05 +0100 |
commit | f091ea35150d95fc6732bbf0c27b971dd445509a (patch) | |
tree | 254bdd5fee37cacef75eec92614f0e89fa4233ec /django/db/backends/postgresql/features.py | |
parent | 26c2a6ff883a213b4dcadf4411740aff866153ac (diff) | |
download | django-f091ea35150d95fc6732bbf0c27b971dd445509a.tar.gz |
Refs #29722 -- Added introspection of materialized views for Oracle.
Thanks Tim Graham for the review.
Diffstat (limited to 'django/db/backends/postgresql/features.py')
-rw-r--r-- | django/db/backends/postgresql/features.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/backends/postgresql/features.py b/django/db/backends/postgresql/features.py index 89ff06fdf5..5c8701c396 100644 --- a/django/db/backends/postgresql/features.py +++ b/django/db/backends/postgresql/features.py @@ -21,6 +21,7 @@ class DatabaseFeatures(BaseDatabaseFeatures): supports_transactions = True can_introspect_autofield = True can_introspect_ip_address_field = True + can_introspect_materialized_views = True can_introspect_small_integer_field = True can_distinct_on_fields = True can_rollback_ddl = True |