Fixed #31403 -- Added support for returning fields from INSERT statements on MariaDB 10.5+.

This commit is contained in:
Adam Johnson 2020-03-25 08:58:21 +00:00 committed by Mariusz Felisiak
parent c06d7c9239
commit 93ed71e058
4 changed files with 36 additions and 3 deletions

View file

@ -344,6 +344,9 @@ Models
* The new :class:`~django.db.models.F` expression ``bitxor()`` method allows
:ref:`bitwise XOR operation <using-f-expressions-in-filters>`.
* :meth:`.QuerySet.bulk_create` now sets the primary key on objects when using
MariaDB 10.5+.
Pagination
~~~~~~~~~~