| Age | Commit message (Collapse) | Author |
|
Backport of cf12257db23fa248c89a3da3f718aa01a50ca659 from master
|
|
using OuterRef.
Regression in f48bc7c3dbd204eefb3c19016b1e4906ac26bee3.
Backport of 81e357a7e19f35235cc998459a10213532727d4e from master
|
|
Thanks Josh Smeaton, Mariusz Felisiak, Sergey Fedoseev, Simon Charettes,
Adam Chainz/Johnson and Tim Graham for comments and reviews and Jamie
Cockburn for initial patch.
|
|
|
|
|
|
|
|
Incorrect since its introduction in 20bab2cf9d02a5c6477d8aac066a635986e0d3f3.
|
|
_output_field).
|
|
Thanks Simon Charette for the fix.
|
|
Add aliases from resolved querysets to the parent query's external
aliases to prevent those aliases from being quoted.
Thanks to Vasily Stepanov for the report and Tim Graham for the review.
|
|
|
|
Accuracy was incorrect when dates differ by a month or more.
|
|
DateField on Oracle/PostgreSQL.
|
|
Thanks Tim Graham and Simon Charette for the reviews.
|
|
|
|
|
|
Thanks Josh Smeaton for Oracle fixes.
|
|
Thanks Mariusz Felisiak for review and MySQL advice.
|
|
|
|
Removed DatabaseFeatures.supports_bitwise_or feature (unused, always True).
|
|
|
|
|
|
http://bugs.python.org/issue27364
|
|
Removed possible u'' prefixes on Python 2.
|
|
assertSequenceEqual().
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Co-Authored-By: Gavin Wahl <gwahl@fusionbox.com>
|
|
|
|
|
|
ForeignKey/OneToOneField
|
|
|
|
|
|
|
|
|
|
The query used a construct of qs.annotate().values().aggregate() where
the first annotate used an F-object reference and the values() and
aggregate() calls referenced that F-object.
Also made sure the inner query's select clause is as simple as possible,
and made sure .values().distinct().aggreate() works correctly.
|
|
|
|
|
|
|
|
|
|
|
|
A field for storing periods of time - modeled in Python by timedelta. It
is stored in the native interval data type on PostgreSQL and as a bigint
of microseconds on other backends.
Also includes significant changes to the internals of time related maths
in expressions, including the removal of DateModifierNode.
Thanks to Tim and Josh in particular for reviews.
|