diff options
Diffstat (limited to 'docs/ref/databases.txt')
| -rw-r--r-- | docs/ref/databases.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index 45b1772514..69921f437b 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -629,9 +629,9 @@ both MySQL and Django will attempt to convert the values from UTC to local time. Row locking with ``QuerySet.select_for_update()`` ------------------------------------------------- -MySQL does not support the ``NOWAIT`` and ``SKIP LOCKED`` options to the -``SELECT ... FOR UPDATE`` statement. If ``select_for_update()`` is used with -``nowait=True`` or ``skip_locked=True``, then a +MySQL does not support the ``NOWAIT``, ``SKIP LOCKED``, and ``OF`` options to +the ``SELECT ... FOR UPDATE`` statement. If ``select_for_update()`` is used +with ``nowait=True``, ``skip_locked=True``, or ``of`` then a :exc:`~django.db.NotSupportedError` is raised. Automatic typecasting can cause unexpected results |
