diff options
author | Hasan Ramezani <hasan.r67@gmail.com> | 2021-12-27 19:04:59 +0100 |
---|---|---|
committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-02-18 13:37:49 +0100 |
commit | 9ac3ef59f9538cfb520e3607af743532434d1755 (patch) | |
tree | 62aeb20ea258d03b49fab140b61a40d2634011ae /django/db/backends/postgresql/features.py | |
parent | 737542390af27616d93f86cd418e2d7f3e874b27 (diff) | |
download | django-9ac3ef59f9538cfb520e3607af743532434d1755.tar.gz |
Fixed #33379 -- Added minimum database version checks.
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 7c5d09d193..5e6752b97a 100644 --- a/django/db/backends/postgresql/features.py +++ b/django/db/backends/postgresql/features.py @@ -6,6 +6,7 @@ from django.utils.functional import cached_property class DatabaseFeatures(BaseDatabaseFeatures): + minimum_database_version = (10,) allows_group_by_selected_pks = True can_return_columns_from_insert = True can_return_rows_from_bulk_insert = True |