summaryrefslogtreecommitdiff
path: root/django/db/models/expressions.py
AgeCommit message (Expand)Author
2021-02-24[3.2.x] Fixed #32478 -- Included nested columns referenced by subqueries in G...Simon Charette
2021-01-13Fixed #26167 -- Added support for functional indexes.Hannes Ljungberg
2020-11-19Fixed #32200 -- Fixed grouping by ExpressionWrapper() with Q objects.Hasan Ramezani
2020-11-16Fixed #31507 -- Added QuerySet.exists() optimizations to compound queries.David-Wobrock
2020-10-28Fixed #32143 -- Used EXISTS to exclude multi-valued relationships.Simon Charette
2020-10-21Fixed #32126 -- Fixed grouping by Case() annotation without cases.Hannes Ljungberg
2020-10-14Refs #32096 -- Fixed ExpressionWrapper crash with JSONField key transforms.Mariusz Felisiak
2020-10-02Fixed #32060 -- Added Random database function.Nick Pope
2020-09-23Fixed #31723 -- Fixed window functions crash with DecimalField on SQLite.Hasan Ramezani
2020-08-31Fixed #31919 -- Resolved output_field of IntegerField subclasses combinations.Simon Charette
2020-08-13Fixed #31792 -- Made Exists() reuse QuerySet.exists() optimizations.Simon Charette
2020-07-15Fixed #30446 -- Resolved Value.output_field for stdlib types.Simon Charette
2020-07-14Refs #25425 -- Allowed unresolved Value() instances to be compiled.Simon Charette
2020-07-09Fixed #31773 -- Fixed preserving output_field in ExpressionWrapper for combin...Mariusz Felisiak
2020-07-01Fixed #31755 -- Made temporal subtraction resolve output field.Sergey Fedoseev
2020-07-01Refs #28621 -- Fixed crash of annotations with nested OuterRef.Sergey Fedoseev
2020-06-30Fixed #28925 -- Fixed durations-only expressions crash on SQLite and MySQL.Sergey Fedoseev
2020-06-30Refs #28925 -- Simplified CombinedExpression.as_sql() a bit.Sergey Fedoseev
2020-06-12Fixed #31659 -- Made ExpressionWrapper preserve output_field for combined exp...Mariusz Felisiak
2020-06-08Fixed #31660 -- Fixed queryset crash when grouping by m2o relation.Mariusz Felisiak
2020-06-03Fixed #31651 -- Made ExpressionWrapper use grouping columns from wrapped expr...Thodoris Sotiropoulos
2020-05-27Fixed #31606 -- Allowed using condition with lookups in When() expression.Ryan Heard
2020-05-19Fixed #31607 -- Fixed evaluated Subquery equality.Mariusz Felisiak
2020-05-14Fixed #31584 -- Fixed crash when chaining values()/values_list() after Exists...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