mirror of
https://github.com/django/django.git
synced 2025-08-07 20:38:21 +00:00
Fixed #28010 -- Added FOR UPDATE OF support to QuerySet.select_for_update().
This commit is contained in:
parent
2d18c60fbb
commit
b9f7dce84b
12 changed files with 206 additions and 23 deletions
|
@ -13,6 +13,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
|
|||
can_defer_constraint_checks = True
|
||||
has_select_for_update = True
|
||||
has_select_for_update_nowait = True
|
||||
has_select_for_update_of = True
|
||||
has_bulk_insert = True
|
||||
uses_savepoints = True
|
||||
can_release_savepoints = True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue