- 23 Nis, 2018 5 kayıt (commit)
-
-
François Freitag yazdı
COUNT is more expensive than EXISTS; use the latter when possible.
-
François Freitag yazdı
Instead of loading all QuerySet results in memory, count the number of entries. This adds an extra query when list() or tuple() is called on the choices (because both call __len__() then __iter__()) but uses less memory since the QuerySet results won't be cached. In most cases, the choices will only be iterated on, meaning that __len__() won't be called and only one query will be executed.
-
Stefan R. Filipek yazdı
-
adamth yazdı
-
Hasan Ramezani yazdı
-
- 21 Nis, 2018 1 kayıt (commit)
-
-
Hasan Ramezani yazdı
Thanks Tim Graham for the fix.
-
- 20 Nis, 2018 4 kayıt (commit)
-
-
orlnub123 yazdı
-
Tim Graham yazdı
-
Tom yazdı
-
drd0013 yazdı
-
- 19 Nis, 2018 7 kayıt (commit)
-
-
Adnan Umer yazdı
-
Adnan Umer yazdı
-
Adnan Umer yazdı
-
Tom yazdı
-
Nick Pope yazdı
-
Burhanuddin Baharuddin yazdı
-
Tim Graham yazdı
Obsolete since numpy 1.12.0.
-
- 18 Nis, 2018 3 kayıt (commit)
-
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Brett Cannon yazdı
-
- 17 Nis, 2018 3 kayıt (commit)
-
-
Jon Dufresne yazdı
-
Tim Graham yazdı
-
Mariusz Felisiak yazdı
-
- 16 Nis, 2018 5 kayıt (commit)
-
-
Chris Jerdonek yazdı
-
Tim Graham yazdı
-
Chris Jerdonek yazdı
-
GS-14 yazdı
-
Daniel Miller yazdı
Regression in cfff2af0.
-
- 15 Nis, 2018 1 kayıt (commit)
-
-
Ben Menesini yazdı
-
- 14 Nis, 2018 1 kayıt (commit)
-
-
Alex Gaynor yazdı
Thanks Alex Gaynor for contributing to the patch.
-
- 13 Nis, 2018 3 kayıt (commit)
-
-
Matthias Kestenholz yazdı
-
Mariusz Felisiak yazdı
Fixed #29286 -- Fixed column mismatch crash with QuerySet.values() or values_list() after combining an annotated and unannotated queryset with union(), difference(), or intersection(). Regression in a0c03c62. Thanks Tim Graham and Carlton Gibson for reviews.
-
Flávio Juvenal yazdı
-
- 12 Nis, 2018 5 kayıt (commit)
-
-
Tim Graham yazdı
Follow up to 003334f8.
-
Paul Donohue yazdı
-
Jeremy Bowman yazdı
Stopped dropping and recreating foreign key constraints on other fields in the same table as the one which is actually being altered in an AlterField operation. Regression in c3e0adca.
-
Jeremy Bowman yazdı
-
Luoxzhg yazdı
-
- 11 Nis, 2018 1 kayıt (commit)
-
-
David Foster yazdı
Fixed #29301 -- Made management command --help display command-specific arguments before common arguments.
-
- 10 Nis, 2018 1 kayıt (commit)
-
-
Tim Graham yazdı
-