diff options
Diffstat (limited to 'docs/ref/models')
| -rw-r--r-- | docs/ref/models/indexes.txt | 5 | ||||
| -rw-r--r-- | docs/ref/models/querysets.txt | 4 |
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: |
