| Age | Commit message (Collapse) | Author |
|
|
|
primary_key field.
|
|
|
|
|
|
Thanks Tim Graham and Mariusz Felisiak for the reviews.
|
|
|
|
QuerySet.bulk_create().
|
|
|
|
settings.DEBUG is False
|
|
verbosity.
|
|
COUNT is more expensive than EXISTS; use the latter when possible.
|
|
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.
|
|
|
|
Thanks Tim Graham for the fix.
|
|
choices.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
accessed and not set.
|
|
LIMIT/OFFSET.
|
|
|
|
|
|
Regression in cfff2af02be40106d4759cc6f8bfa476ce82421c.
|
|
Thanks Alex Gaynor for contributing to the patch.
|
|
|
|
values_list() after combining an annotated and unannotated queryset with union(), difference(), or intersection().
Regression in a0c03c62a8ac586e5be5b21393c925afa581efaf.
Thanks Tim Graham and Carlton Gibson for reviews.
|
|
ForeignKey attname.
|
|
|
|
unique field.
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 c3e0adcad8d8ba94b33cabd137056166ed36dae0.
|
|
arguments before common arguments.
|
|
Thanks erindy for the report.
|
|
|
|
data hashed to generate tokens.
Thanks Luke Plant for the draft text.
|
|
|
|
Thanks Vladimir Ivanov for the initial patch.
|
|
|
|
|
|
null value.
|
|
when 'postgres' db isn't available.
Thanks Tim Graham and Claude Paroz for reviews.
|
|
Thanks Tim Graham and Nick Pope for reviews.
|
|
functions on MySQL.
Thanks Tim Graham for the review.
|
|
|
|
map's SRID.
Regression in 6ecccad711b52f9273b1acb07a57d3f806e93928.
|
|
choice widgets.
Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01.
|
|
Unused since their introduction in a9a0f0b03f9a02deb03617bf7e9773a307d1328f.
|
|
|
|
instead of "(actual errors: )".
|