diff options
| author | Shai Berger <shai@platonix.com> | 2017-09-21 19:13:09 +0300 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-09-21 12:13:09 -0400 |
| commit | d612026c37f85769322a44c0284ca2d2be6b6e5b (patch) | |
| tree | 3b8e13157e72dba25878837d055706f135181ba1 /docs/releases/2.0.txt | |
| parent | 347551c2a1bc78b3a5886be6adde0c8151001acc (diff) | |
Refs #28595 -- Added a hook to add execute wrappers for database queries.
Thanks Adam Johnson, Carl Meyer, Anssi Kääriäinen, Mariusz Felisiak,
Michael Manfre, and Tim Graham for discussion and review.
Diffstat (limited to 'docs/releases/2.0.txt')
| -rw-r--r-- | docs/releases/2.0.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/2.0.txt b/docs/releases/2.0.txt index 71d41b664c..77eee0c206 100644 --- a/docs/releases/2.0.txt +++ b/docs/releases/2.0.txt @@ -339,6 +339,11 @@ Models parameters, if the backend supports this feature. Of Django's built-in backends, only Oracle supports it. +* The new :meth:`connection.execute_wrapper() + <django.db.backends.base.DatabaseWrapper.execute_wrapper>` method allows + :doc:`installing wrappers around execution of database queries + </topics/db/instrumentation>`. + * The new ``filter`` argument for built-in aggregates allows :ref:`adding different conditionals <conditional-aggregation>` to multiple aggregations over the same fields or relations. |
