mirror of
https://github.com/django/django.git
synced 2025-08-06 11:58:26 +00:00
Fixed #30375 -- Added FOR NO KEY UPDATE support to QuerySet.select_for_update() on PostgreSQL.
This commit is contained in:
parent
0e893248b2
commit
a4e6030904
10 changed files with 57 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue