diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-08-03 18:54:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-03 18:54:29 +0200 |
| commit | b719688b21febd9a04c8623126558cd06cc27b80 (patch) | |
| tree | 919fc252f25b583e2402bb40d4e384c12cbdd847 /docs/ref/models | |
| parent | b3e0170ab546a96930ce3114b0a1a560953c0ff4 (diff) | |
Fixed #34761 -- Dropped support for MySQL < 8.0.11.
Diffstat (limited to 'docs/ref/models')
| -rw-r--r-- | docs/ref/models/expressions.txt | 2 | ||||
| -rw-r--r-- | docs/ref/models/indexes.txt | 6 | ||||
| -rw-r--r-- | docs/ref/models/querysets.txt | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/docs/ref/models/expressions.txt b/docs/ref/models/expressions.txt index c72cf5a853..abae25f09c 100644 --- a/docs/ref/models/expressions.txt +++ b/docs/ref/models/expressions.txt @@ -880,7 +880,7 @@ from groups to be included: Support for filtering against window functions was added. -Among Django's built-in database backends, MySQL 8.0.2+, PostgreSQL, and Oracle +Among Django's built-in database backends, MySQL, PostgreSQL, and Oracle support window expressions. Support for different window expression features varies among the different databases. For example, the options in :meth:`~django.db.models.Expression.asc` and diff --git a/docs/ref/models/indexes.txt b/docs/ref/models/indexes.txt index d23a5fd1ce..6046abf029 100644 --- a/docs/ref/models/indexes.txt +++ b/docs/ref/models/indexes.txt @@ -82,10 +82,10 @@ field's name. For example ``Index(fields=['headline', '-pub_date'])`` would create SQL with ``(headline, pub_date DESC)``. -.. admonition:: MySQL and MariaDB +.. admonition:: MariaDB - Index ordering isn't supported on MySQL < 8.0.1 and MariaDB < 10.8. In that - case, a descending index is created as a normal index. + Index ordering isn't supported on MariaDB < 10.8. In that case, a + descending index is created as a normal index. ``name`` -------- diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index 8a9733786a..1c73a7f085 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -1928,8 +1928,8 @@ them: The ``postgresql``, ``oracle``, and ``mysql`` database backends support ``select_for_update()``. However, MariaDB only supports the ``nowait`` argument, MariaDB 10.6+ also supports the ``skip_locked`` argument, and MySQL -8.0.1+ supports the ``nowait``, ``skip_locked``, and ``of`` arguments. The -``no_key`` argument is only supported on PostgreSQL. +supports the ``nowait``, ``skip_locked``, and ``of`` arguments. The ``no_key`` +argument is only supported on PostgreSQL. Passing ``nowait=True``, ``skip_locked=True``, ``no_key=True``, or ``of`` to ``select_for_update()`` using database backends that do not support these |
