summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2025-10-27 15:05:23 +0100
committerGitHub <noreply@github.com>2025-10-27 15:05:23 +0100
commitc87daabbf32779f5421a846dd33a7dd46cc27d54 (patch)
treefca1e4216a722899bfe41ee1cd82d7dc71d35a41 /docs/ref/models
parent4744e9939b65d168c531e5e23d1ac8a4445ac7f9 (diff)
Fixed #36624 -- Dropped support for MySQL < 8.4.
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/indexes.txt5
-rw-r--r--docs/ref/models/querysets.txt4
2 files changed, 4 insertions, 5 deletions
diff --git a/docs/ref/models/indexes.txt b/docs/ref/models/indexes.txt
index d2b2430643..6f8dd39fb7 100644
--- a/docs/ref/models/indexes.txt
+++ b/docs/ref/models/indexes.txt
@@ -63,10 +63,9 @@ and the ``weight`` rounded to the nearest integer.
error. This means that functions such as
:class:`Concat() <django.db.models.functions.Concat>` aren't accepted.
-.. admonition:: MySQL and MariaDB
+.. admonition:: MariaDB
- Functional indexes are ignored with MySQL < 8.0.13 and MariaDB as neither
- supports them.
+ Functional indexes are unsupported and ignored with MariaDB.
``fields``
----------
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index d9badb690d..3e7024211e 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -3161,8 +3161,8 @@ Pass these flags as keyword arguments. For example, when using PostgreSQL:
On some databases, flags may cause the query to be executed which could have
adverse effects on your database. For example, the ``ANALYZE`` flag supported
-by MariaDB, MySQL 8.0.18+, and PostgreSQL could result in changes to data if
-there are triggers or if a function is called, even for a ``SELECT`` query.
+by MariaDB, MySQL, and PostgreSQL could result in changes to data if there are
+triggers or if a function is called, even for a ``SELECT`` query.
.. _field-lookups: