diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-09-19 15:06:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-19 15:06:05 +0200 |
| commit | 3623a0c0798f941da4d951c912b2c9057c1a3fd3 (patch) | |
| tree | c9f50e4af4e2d37ed828c0ce752220419141761a /docs/ref | |
| parent | 7c1cf585e80114b6e531b40bd2954406d033afe3 (diff) | |
Fixed #34850 -- Dropped support for MariaDB 10.4.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/databases.txt | 2 | ||||
| -rw-r--r-- | docs/ref/models/querysets.txt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index a4c93be076..62f82974b0 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -387,7 +387,7 @@ non-durable <https://www.postgresql.org/docs/current/non-durability.html>`_. MariaDB notes ============= -Django supports MariaDB 10.4 and higher. +Django supports MariaDB 10.5 and higher. To use MariaDB, use the MySQL backend, which is shared between the two. See the :ref:`MySQL notes <mysql-notes>` for more details. diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index 547bd4b4ff..d2dc088f37 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -2385,8 +2385,8 @@ This has a number of caveats though: * It does not work with child models in a multi-table inheritance scenario. * If the model's primary key is an :class:`~django.db.models.AutoField`, the primary key attribute can only be retrieved on certain databases (currently - PostgreSQL, MariaDB 10.5+, and SQLite 3.35+). On other databases, it will not - be set. + PostgreSQL, MariaDB, and SQLite 3.35+). On other databases, it will not be + set. * It does not work with many-to-many relationships. * It casts ``objs`` to a list, which fully evaluates ``objs`` if it's a generator. The cast allows inspecting all objects so that any objects with a |
