summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql/features.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-09-24 10:32:26 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-09-24 10:37:22 +0200
commit01104368ff77c788f95377e8aceb48772a42fb42 (patch)
treefe8dc6480d38809e3b3ccf2b6e742d6566f3db95 /django/db/backends/postgresql/features.py
parentb31e63879eb5d9717e9f890401f7222e4f00c910 (diff)
downloaddjango-01104368ff77c788f95377e8aceb48772a42fb42.tar.gz
Refs #29444 -- Removed redundant DatabaseFeatures.can_return_multiple_columns_from_insert.
Unnecessary since b31e63879eb5d9717e9f890401f7222e4f00c910.
Diffstat (limited to 'django/db/backends/postgresql/features.py')
-rw-r--r--django/db/backends/postgresql/features.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/backends/postgresql/features.py b/django/db/backends/postgresql/features.py
index 866a0f98e7..907ba136fb 100644
--- a/django/db/backends/postgresql/features.py
+++ b/django/db/backends/postgresql/features.py
@@ -8,7 +8,6 @@ from django.utils.functional import cached_property
class DatabaseFeatures(BaseDatabaseFeatures):
allows_group_by_selected_pks = True
can_return_columns_from_insert = True
- can_return_multiple_columns_from_insert = True
can_return_rows_from_bulk_insert = True
has_real_datatype = True
has_native_uuid_field = True