diff options
Diffstat (limited to 'docs/ref/models')
| -rw-r--r-- | docs/ref/models/querysets.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index e98f0202ce..867ce47ce3 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -1640,8 +1640,8 @@ backends support ``select_for_update()``. However, MySQL doesn't support the ``nowait`` and ``skip_locked`` arguments. Passing ``nowait=True`` or ``skip_locked=True`` to ``select_for_update()`` -using database backends that do not support these options, such as MySQL, will -cause a :exc:`~django.db.DatabaseError` to be raised. This prevents code from +using database backends that do not support these options, such as MySQL, +raises a :exc:`~django.db.NotSupportedError`. This prevents code from unexpectedly blocking. Evaluating a queryset with ``select_for_update()`` in autocommit mode on |
