| Age | Commit message (Collapse) | Author |
|
|
|
assertQuerySetEqual().
Co-Authored-By: Michael Howitz <mh@gocept.com>
|
|
Thanks shukryzablah for the report.
|
|
Most QuerySet methods are mapped onto the Manager and, in general,
it isn't necessary to call .all() on the manager.
|
|
|
|
SQLite.
|
|
|
|
|
|
Co-authored-by: Simon Charette <charettes@users.noreply.github.com>
|
|
|
|
The psycopg2 backend uses the type information to provide type hints.
|
|
|
|
Follow up to 6461583b6cc257d25880ef9a9fd7e2125ac53ce1.
|
|
|
|
|
|
This allows using expressions that have an output_field that is a
BooleanField to be used directly in a queryset filters, or in the
When() clauses of a Case() expression.
Thanks Josh Smeaton, Tim Graham, Simon Charette, Mariusz Felisiak, and
Adam Johnson for reviews.
Co-Authored-By: NyanKiyoshi <hello@vanille.bid>
|
|
|
|
Thanks Lynn Cyrin for contributing to the patch, and Nick Pope for review.
|
|
Thanks Matthew Pava for the report and Tim Graham and Carlton Gibson for
reviews.
Regression in 19b2dfd1bfe7fd716dd3d8bfa5f972070d83b42f.
|
|
expression.
Otherwise it generates invalid SQL.
|
|
|
|
|
|
|
|
|
|
Thanks Tim Graham and Simon Charette for the reviews.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Forwardport of 5b3c66d8b64add684489f5010e43de73e7acdd04 from stable/1.8.x
|
|
|
|
|
|
|
|
ForeignKey/OneToOneField
|
|
|
|
Partial forwardport of 469f1e362bb9670b174b37da9edd4631aff7badb from stable/1.8.x
as the issue was already fixed in master.
|
|
Avoided split_exclude() for Q when used as an expression.
|
|
|
|
Case expressions weren't copied deep enough (self.cases list was
reused resulting in an error).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|