summaryrefslogtreecommitdiff
path: root/django/db/models/expressions.py
AgeCommit message (Expand)Author
2019-08-29Refs #25367 -- Simplified OrderBy and Lookup by using Case() instead of RawSQ...Mariusz Felisiak
2019-08-29Fixed #25367 -- Allowed boolean expressions in QuerySet.filter() and exclude().Matthew Schinckel
2019-08-27Fixed #30727 -- Made Subquery pickle without evaluating their QuerySet.Andrew Brown
2019-08-13Refs #25367 -- Moved Oracle Exists() handling to contextual methods.Simon Charette
2019-08-13Refs #25367 -- Moved select_format hook to BaseExpression.Simon Charette
2019-08-12Refs #24793 -- Removed bogus connection argument from SQLCompiler.compile() c...Simon Charette
2019-08-02Fixed #30668 -- Made QuerySet.filter() raise NotSupportedError if any of sour...aaktsipetrov
2019-07-11Fixed #28289 -- Fixed crash of RawSQL annotations on inherited model fields.can
2019-07-10Fixed #30628 -- Adjusted expression identity to differentiate bound fields.Simon Charette
2019-06-10Fixed #30548 -- Improved exception when expression contains mixed types.CruxBox
2019-03-27Fixed #28621 -- Fixed crash of annotations with OuterRef.Mariusz Felisiak
2019-03-21Removed obsolete Lookup hook to prepare rhs expressions.Simon Charette
2019-03-21Refs #27149, #29542 -- Simplified subquery parentheses wrapping logic.Simon Charette
2019-03-21Refs #27149 -- Moved subquery expression resolving to Query.Simon Charette
2019-03-21Refs #27149 -- Made Subquery store Query instead of Queryset.Simon Charette
2019-03-21Fixed #30158 -- Avoided unnecessary subquery group by on aggregation.Simon Charette
2019-03-21Refs #30158 -- Added alias argument to Expression.get_group_by_cols().Simon Charette
2019-02-09Fixed #30027 -- Errored out on Window function usage if unsupported.Simon Charette
2019-02-09Simplified Window.as_sql().Sergey Fedoseev
2019-01-15Fixed #30099 -- Fixed invalid SQL when filtering a Subquery by an aggregate.Nasir Hussain
2019-01-14Removed unnecessary string formatting of strings.Jon Dufresne
2018-12-27Fixed #29851 -- Fixed crash of annotations with window expressions in Subquery.Mariusz Felisiak
2018-10-17Moved make_hashable() to django.utils and added tests.aspalding
2018-10-02Fixed #29745 -- Based Expression equality on detailed initialization signature.Simon Charette
2018-09-28Refs #28909 -- Simplifed code using unpacking generalizations.Sergey Fedoseev
2018-08-20Removed unused function argument from Window.as_sql().Mariusz Felisiak
2018-07-10Fixed #11964 -- Added support for database check constraints.Ian Foote
2018-04-16Fixed #29330 -- Fixed crash when pickling BaseExpression.Daniel Miller
2018-03-08Fixed #29195 -- Fixed Exists.output_field resolution on single-valued queries.Simon Charette
2018-03-01Fixed #29172 -- Fixed crash with Window expression in a subquery.Tomáš Ehrlich
2018-02-28Fixed #29166 -- Fixed crash in When() expression with a list argument.Mariusz Felisiak
2018-02-23Fixed #29142 -- Fixed crash when OuterRef is used with an operator.Matthew Schinckel
2018-02-10Fixed #29118 -- Fixed crash with QuerySet.order_by(Exists(...)).Raphael Gaschignard
2018-01-31Fixed #29066 -- Allowed negating query expressions.priyanshsaxena
2017-12-26Fixed #28930 -- Simplified code with any() and all().Дилян Палаузов
2017-12-26Fixed #28731 -- Added an error message when using an empty Q() in a When expr...Tim Martin
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-12-08Refs #27849 -- Removed empty Q() hack in filtered Aggregate.as_sql().Simon Charette
2017-12-04Fixed #28860 -- Removed unnecessary len() calls.Дилян Палаузов
2017-11-27Fixed #28848 -- Fixed SQLite/MySQL crash when ordering by a filtered subquery...Raphael Michel
2017-10-25Fixed #28689 -- Fixed unquoted table names in Subquery SQL when using OuterRef.Mariusz Felisiak
2017-10-21Fixed #28722 -- Made QuerySet.reverse() affect nulls_first/nulls_last.Tomer Chachamu
2017-09-28Merged hash() calls.Mariusz Felisiak
2017-09-25Fixed #27857 -- Dropped support for Python 3.4.Tim Graham
2017-09-18Fixed #26608 -- Added support for window expressions (OVER clause).Mads Jensen
2017-09-11Fixed #28492 -- Defined default output_field of expressions at the class level.Simon Charette
2017-09-07Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."Tim Graham
2017-08-11Refs #28459 -- Improved performance of BaseExpression.convert_value().Sergey Fedoseev
2017-08-11Replaced typecast_decimal() with decimal.Decimal().Sergey Fedoseev
2017-08-10Refs #18247 -- Fixed filtering on CombinedExpression(output_field=DecimalFiel...Sergey Fedoseev