summaryrefslogtreecommitdiff
path: root/django/db/models/expressions.py
AgeCommit message (Expand)Author
2023-02-27[4.2.x] Fixed #34368 -- Made subquery raise NotSupportedError when referencin...Simon Charette
2023-02-01[4.2.x] Refs #33476 -- Applied Black's 2023 stable style.David Smith
2023-01-26[4.2.x] Fixed #34254 -- Fixed return value of Exists() with empty queryset.Raj Desai
2022-11-09Fixed #28477 -- Stripped unused annotations on aggregation.Simon Charette
2022-11-07Refs #33374 -- Adjusted full match condition handling.Simon Charette
2022-10-31Fixed #16211 -- Added logical NOT support to F expressions.David Wobrock
2022-10-06Refs #30158 -- Removed alias argument for Expression.get_group_by_cols().Simon Charette
2022-10-06Refs #33992 -- Refactored subquery grouping logic.Simon Charette
2022-10-06Refs #33308 -- Enabled explicit GROUP BY and ORDER BY aliases.Simon Charette
2022-09-27Fixed #33464 -- Resolved output_field for combined numeric expressions with M...David Wobrock
2022-09-08Fixed #33992 -- Fixed queryset crash when aggregating over a group containing...Simon Charette
2022-08-15Refs #28333 -- Added partial support for filtering against window functions.Simon Charette
2022-08-11Replaced Expression.replace_references() with .replace_expressions().Simon Charette
2022-08-10Refs #33895 -- Fixed Case() crash with filters that match everything in When(...Mariusz Felisiak
2022-08-09Fixed #33895 -- Fixed Case() crash with filters that match everything in When().David Wobrock
2022-08-09Fixed #33902 -- Fixed Meta.constraints validation crash with F() expressions.Mariusz Felisiak
2022-08-06Fixed #33898 -- Fixed Window() expression crash with ArrayAgg().Mariusz Felisiak
2022-05-12Fixed #33543 -- Deprecated passing nulls_first/nulls_last=False to OrderBy an...Mariusz Felisiak
2022-05-12Fixed #29538 -- Fixed crash of ordering by related fields when Meta.ordering ...Ed Rivas
2022-05-10Fixed #30581 -- Added support for Meta.constraints validation.Gagaro
2022-03-31Fixed #33397 -- Corrected resolving output_field for DateField/DateTimeField/...Luke Plant
2022-03-31Refs #33397 -- Added register_combinable_fields().Luke Plant
2022-03-16Refs #30581 -- Allowed sql.Query to be used without model.Gagaro
2022-03-04Fixed #29865 -- Added logical XOR support for Q() and querysets.Ryan Heard
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2022-02-07Refs #33482 -- Fixed QuerySet selecting and filtering againts negated Exists(...Mariusz Felisiak
2022-02-02Fixed #33482 -- Fixed QuerySet filtering againts negated Exists() with empty ...Simon Charette
2022-01-17Fixed #33435 -- Fixed invalid SQL generatered by Subquery.as_sql().My-Name-Is-Nabil
2022-01-07Fixed #33216 -- Simpilified deconstructed paths for some expressions.Allen Jonathan David
2021-12-02Fixed #33282 -- Fixed a crash when OR'ing subquery and aggregation lookups.Simon Charette
2021-11-23Fixed #33304 -- Allowed passing string expressions to Window(order_by).Simon Charette
2021-11-23Refs #33304 -- Enclosed aggregate ordering logic in an expression.Simon Charette
2021-11-08Fixed #33257 -- Fixed Case() and ExpressionWrapper() with decimal values on S...Matthijs Kooijman
2021-10-21Made F deconstruction omit 'expressions' in the path.Adam Johnson
2021-09-29Fixed #33018 -- Fixed annotations with empty queryset.David Wobrock
2021-09-29Fixed #33141 -- Renamed Expression.empty_aggregate_value to empty_result_set_...David Wobrock
2021-07-09Fixed #27021 -- Allowed lookup expressions in annotations, aggregations, and ...Ian Foote
2021-07-02Refs #26430 -- Re-introduced empty aggregation optimization.Simon Charette
2021-05-24Refs #24121 -- Improved Value.__repr__().Mariusz Felisiak
2021-05-05Fixed #32714 -- Prevented recreation of migration for Meta.ordering with Orde...Simon Charette
2021-04-28Fixed #32632, Fixed #32657 -- Removed flawed support for Subquery deconstruct...Simon Charette
2021-04-20Refs #25287 -- Added support for multiplying and dividing DurationField by sc...Tobias Bengfort
2021-04-20Removed unnecessary line in OrderBy.as_sql().David Beitey
2021-03-29Fixed #32585 -- Fixed Value() crash with DecimalField on SQLite.Hasan Ramezani
2021-02-24Fixed #32478 -- Included nested columns referenced by subqueries in GROUP BY ...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