diff options
author | Manuel Weitzman <manuelweitzman@gmail.com> | 2020-05-10 12:25:06 -0400 |
---|---|---|
committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-05-21 10:51:10 +0200 |
commit | a4e6030904df63b3f10aa0729b86dc6942b0458e (patch) | |
tree | 7a84def5f8bd0e0376a471fa238f74f429e25478 /django/db/backends/postgresql/features.py | |
parent | 0e893248b28e30bf562d29e6d5745ffad4b1a1eb (diff) | |
download | django-a4e6030904df63b3f10aa0729b86dc6942b0458e.tar.gz |
Fixed #30375 -- Added FOR NO KEY UPDATE support to QuerySet.select_for_update() on PostgreSQL.
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 a4ba0b99fc..f8d2ea1286 100644 --- a/django/db/backends/postgresql/features.py +++ b/django/db/backends/postgresql/features.py @@ -18,6 +18,7 @@ class DatabaseFeatures(BaseDatabaseFeatures): has_select_for_update_nowait = True has_select_for_update_of = True has_select_for_update_skip_locked = True + has_select_for_no_key_update = True can_release_savepoints = True supports_tablespaces = True supports_transactions = True |