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

Fixed #34580 -- Avoided unnecessary computation of selected expressions in SQLCompiler.

Performance regression in 278881e376.

Co-authored-by: David Smith <smithdc@gmail.com>
This commit is contained in:
Simon Charette
2023-05-21 16:59:56 +01:00
committed by Mariusz Felisiak
parent 00f5d2d110
commit 98f6ada0e2
2 changed files with 6 additions and 1 deletions

View File

@@ -22,3 +22,6 @@ Bugfixes
* Fixed a bug in Django 4.2 where :option:`makemigrations --update` didn't
respect the ``--name`` option (:ticket:`34568`).
* Fixed a performance regression in Django 4.2 when compiling queries without
ordering (:ticket:`34580`).