summaryrefslogtreecommitdiff
path: root/django/db/models/expressions.py
AgeCommit message (Expand)Author
2017-07-06Fixed #28365 -- Unified DatabaseOperations.date_interval_sql() return value w...Mariusz Felisiak
2017-06-29Removed obsolete Query.tables attribute.Anssi Kääriäinen
2017-06-28Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().Mads Jensen
2017-05-30Fixed #28199 -- Fixed Subquery generating unnecessary/invalid CAST.Tim Graham
2017-03-29Refs #18247 -- Fixed SQLite QuerySet filtering on decimal result of Least and...Sergey Fedoseev
2017-03-01Fixed #27862 -- Fixed incorrectly quoted table aliases in Subquery SQL.Matthew Schinckel
2017-02-28Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan
2017-02-23Refs #11964, #26167 -- Made Expressions deconstructible.Ian Foote
2017-02-23Refs #23919 -- Used yield from.Vytis Banaitis
2017-02-16Fixed #27828 -- Fixed a crash when subtracting Integer/DurationField from Dat...Vytis Banaitis
2017-02-01Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-21Refs #23919 -- Removed misc references to Python 2.Tim Graham
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-14Fixed #27149 -- Added Subquery and Exists database expressions.Matthew Schinckel
2017-01-03Fixed #25912 -- Added binary left/right shift operators to F expressions.anabelensc
2016-12-29Fixed #27615 -- Used timedeltas as arguments to Oracle database driver.Mariusz Felisiak
2016-12-08Fixed #13312 -- Allowed specifying the order of null fields in queries.Yohann Gabory
2016-12-07Fixed #25708 -- Fixed annotations with geometry values.Sergey Fedoseev
2016-08-08Moved EmpytResultSet to django.core.exceptions.Johannes Dollinger
2016-08-08Fixed #26433 -- Fixed Case expressions with empty When.Johannes Dollinger
2016-05-18Fixed #25774 -- Refactor datetime expressions into public APIJosh Smeaton
2016-05-04Fixed #22936 -- Obsoleted Field.get_prep_lookup()/get_db_prep_lookup()Claude Paroz
2016-05-03Normalized "an SQL" spelling.Ville Skyttä
2016-04-22Removed unused BaseExpression.refs_aggregate().Tim Graham
2016-04-22Refs #3254 -- Added full text search to contrib.postgres.Marc Tamlyn
2016-04-04Fixed W503 flake8 warnings.Tim Graham
2016-03-29Fixed #25759 -- Added keyword arguments to customize Expressions' as_sql().Kai Feldhoff
2016-03-28Normalized Func.as_sqlite() signature.Tim Graham
2016-02-26Fixed #24793 -- Unified temporal difference support.Simon Charette
2016-02-11Fixed #26196 -- Made sure __in lookups use to_field as default.Anssi Kääriäinen
2016-01-02Fixed #25316 -- Fixed a crash with order_by() and values() after annotate().varunnaganathan
2015-12-03Fixed many spelling mistakes in code, comments, and docs.Josh Soref
2015-11-07Simplified dict initialization in two places.Dmitry Dygalo
2015-11-02Refs #25629 -- Added `arity` class attribute to `Func` expressionsSergey Fedoseev
2015-09-22Fixed #24509 -- Added Expression support to SQLInsertCompilerAlex Hill
2015-09-14Fixed #25377 -- Changed Count queries to execute COUNT(*) instead of COUNT('*').Adam Chainz
2015-06-30Fixed #18247 -- Added cast to NUMERIC for Decimals on sqliteMichael Tänzer
2015-05-05Fixed #24752 -- query crash when reusing Case expressionsAnssi Kääriäinen
2015-03-22Fixed #24485 -- Allowed combined expressions to set output_fieldJosh Smeaton
2015-03-22Fixed #24508 -- Made annotations commutativeJosh Smeaton
2015-03-17Refs #24485 -- Renamed some expression typesJosh Smeaton
2015-03-17Fixed #24486 -- Fixed error with datetime and DurationField arithmeticJosh Smeaton
2015-03-06Fixed #24420 -- Allowed ordering by case expressionsJosh Smeaton
2015-02-20Update converters to take a consistent set of parameters.Marc Tamlyn
2015-02-20Fixed #24343 -- Ensure db converters are used for foreign keys.Marc Tamlyn
2015-02-12Refs #14030 -- Improved expression support for python valuesJosh Smeaton
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-28Refs #14030 -- Renamed CombinableMixin to CombinableJosh Smeaton