1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

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
~~~~~~~~~~