summaryrefslogtreecommitdiff
path: root/django/db/models/sql/query.py
AgeCommit message (Expand)Author
2021-04-28[3.2.x] Fixed #32632, Fixed #32657 -- Removed flawed support for Subquery dec...Simon Charette
2021-04-21[3.2.x] Fixed #32650 -- Fixed handling subquery aliasing on queryset combinat...Simon Charette
2021-02-24[3.2.x] Fixed #32478 -- Included nested columns referenced by subqueries in G...Simon Charette
2021-01-05Fixed #32231 -- Allowed passing None params to QuerySet.raw().Alexander Lyabah
2020-11-27Fixed #25534, Fixed #31639 -- Added support for transform references in expre...Ian Foote
2020-11-16Fixed #31507 -- Added QuerySet.exists() optimizations to compound queries.David-Wobrock
2020-11-14Fixed #31496 -- Fixed QuerySet.values()/values_list() crash on combined query...David-Wobrock
2020-11-04Fixed #31910 -- Fixed crash of GIS aggregations over subqueries.Simon Charette
2020-10-29Fixed #32152 -- Fixed grouping by subquery aliases.Christian Klus
2020-10-28Fixed #32143 -- Used EXISTS to exclude multi-valued relationships.Simon Charette
2020-10-28Refs #27149 -- Fixed sql.Query identity.Simon Charette
2020-10-23Fixed #32134 -- Fixed crash of __range lookup with namedtuple.Adam Johnson
2020-08-13Fixed #31792 -- Made Exists() reuse QuerySet.exists() optimizations.Simon Charette
2020-07-31Fixed #27719 -- Added QuerySet.alias() to allow creating reusable aliases.Alexandr Tatarinov
2020-07-09Fixed #29789 -- Added support for nested relations to FilteredRelation.matt ferrante
2020-07-07Fixed #31767 -- Fixed QuerySet.none() on combined queryset.Mariusz Felisiak
2020-07-06Fixed #23797 -- Fixed QuerySet.exclude() when rhs is a nullable column.Jacob Walls
2020-06-08Fixed #31664 -- Reallowed using non-expressions having filterable attribute a...Nicolas Baccelli
2020-05-21Fixed #30375 -- Added FOR NO KEY UPDATE support to QuerySet.select_for_update...Manuel Weitzman
2020-05-14Fixed #31568 -- Fixed alias reference when aggregating over multiple subqueries.Simon Charette
2020-05-14Fixed #31566 -- Fixed aliases crash when chaining values()/values_list() afte...Simon Charette
2020-04-06Fixed #31426 -- Added proper field validation to QuerySet.order_by().Simon Charette
2020-04-06Refs #7098 -- Deprecated passing raw column aliases to order_by().Simon Charette
2020-04-06Fixed #31420 -- Fixed crash when filtering subquery annotation against a Simp...Hasan Ramezani
2020-03-25Fixed #31377 -- Disabled grouping by aliases on QuerySet.values()/values_list...Hasan Ramezani
2020-01-15Refs #31136 -- Made QuerySet.values()/values_list() group only by selected an...Mariusz Felisiak
2020-01-04Fixed #31136 -- Disabled grouping by aliases on QuerySet.values()/values_list().Mariusz Felisiak
2019-12-23Fixed #31109 -- Disabled grouping by aliases on QuerySet.exists().Simon Charette
2019-12-19Fixed #31094 -- Included columns referenced by subqueries in GROUP BY on aggr...Simon Charette
2019-12-10Used Signature API instead of deprecated inspect.getcallargs().Baptiste Mispelon
2019-12-06Made Query.check_filterable() use bool by default instead of str.Alex Aktsipetrov
2019-12-06Fixed #31060 -- Reallowed window expressions to be used in conditions outside...Alex Aktsipetrov
2019-11-21Refs #25367 -- Made Query.build_filter() raise TypeError on non-conditional e...Simon Charette
2019-11-21Fixed #30484 -- Added conditional expressions support to CheckConstraint.Simon Charette
2019-11-21Refs #25367 -- Moved conditional expression wrapping to the Exact lookup.Simon Charette
2019-11-21Refs #11964 -- Removed SimpleCol in favor of Query(alias_cols).Simon Charette
2019-11-13Fixed #30971 -- Prevented Query.resolve_lookup_value() from coercing list val...George Marshall
2019-09-24Fixed #30796 -- Prevented select_related() from mutating a queryset on chaining.Simon Charette
2019-09-02Fixed #30739 -- Fixed exclusion of multi-valued lookup against outer rhs.Simon Charette
2019-08-29Fixed #25367 -- Allowed boolean expressions in QuerySet.filter() and exclude().Matthew Schinckel
2019-08-16Fixed #30687 -- Fixed using of OuterRef() expressions in distance lookups.Andrew Brown
2019-08-02Fixed #30668 -- Made QuerySet.filter() raise NotSupportedError if any of sour...aaktsipetrov
2019-07-25Added Query.is_sliced property.Mariusz Felisiak
2019-06-28Fixed #28408 -- Added error message when updating with annotated expressions ...can
2019-06-19Fixed #29834 -- Fixed column mismatch crash with QuerySet.values()/values_lis...can
2019-05-07Fixed #30349 -- Fixed QuerySet.exclude() on FilteredRelation.Rob
2019-04-30Fixed #30412 -- Fixed crash when adding check constraints with OR'ed conditio...can
2019-04-15Refs #23758 -- Used RecursionError instead of RuntimeError to raise nested su...Simon Charette
2019-04-15Refs #27149 -- Based recursive nested subquery detection on sys.getrecursionl...Simon Charette
2019-03-23Fixed #30246 -- Reused annotation aliases references in aggregation filters.Simon Charette