summaryrefslogtreecommitdiff
path: root/django/db/models/expressions.py
AgeCommit message (Expand)Author
2020-07-09[3.1.x] Fixed #31773 -- Fixed preserving output_field in ExpressionWrapper fo...Mariusz Felisiak
2020-06-12[3.1.x] Fixed #31659 -- Made ExpressionWrapper preserve output_field for comb...Mariusz Felisiak
2020-06-08[3.1.x] Fixed #31660 -- Fixed queryset crash when grouping by m2o relation.Mariusz Felisiak
2020-06-03[3.1.x] Fixed #31651 -- Made ExpressionWrapper use grouping columns from wrap...Thodoris Sotiropoulos
2020-05-19[3.1.x] Fixed #31607 -- Fixed evaluated Subquery equality.Mariusz Felisiak
2020-05-14[3.1.x] Fixed #31584 -- Fixed crash when chaining values()/values_list() afte...Mariusz Felisiak
2020-04-04Fixed #31415 -- Fixed crash when nested OuterRef is used with operators or in...Hasan Ramezani
2020-03-25Fixed #31396 -- Added binary XOR operator to F expressions.Hannes Ljungberg
2020-03-18Fixed #31376 -- Optimized nulls ordering when possible on SQLite and MySQL.Simon Charette
2020-03-03Fixed #31150 -- Included subqueries that reference related fields in GROUP BY...Mariusz Felisiak
2020-02-27Fixed #31251 -- Disabled grouping by OuterRef() annotation.Rohit
2020-02-04Simplified imports from django.db and django.contrib.gis.db.Nick Pope
2019-12-19Fixed #31094 -- Included columns referenced by subqueries in GROUP BY on aggr...Simon Charette
2019-11-21Refs #11964 -- Removed SimpleCol in favor of Query(alias_cols).Simon Charette
2019-11-04Refs #13312 -- Simplified handling of nulls ordering on MySQL.Nick Pope
2019-10-31Refs #13312 -- Removed unnecessary IF wrapping in nulls_last handling on MySQL.Simon Charette
2019-10-09Fixed #30860 -- Disabled unneeded NULLS FIRST/LAST workaround on SQLite 3.30+.Simon Charette
2019-10-01Fixed #30651 -- Made __eq__() methods return NotImplemented for not implement...ElizabethU
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