summaryrefslogtreecommitdiff
path: root/django/db/models/sql/compiler.py
AgeCommit message (Expand)Author
2022-06-27[4.1.x] Fixed #33796 -- Fixed ordered combined queryset crash when used in su...Mariusz Felisiak
2022-05-12Fixed #29538 -- Fixed crash of ordering by related fields when Meta.ordering ...Ed Rivas
2022-04-19Refs #32226 -- Fixed JSON format of QuerySet.explain() on PostgreSQL when for...Mariusz Felisiak
2022-04-14Made select_for_update() don't raise TransactionManagementError on databases ...Mariusz Felisiak
2022-04-13Removed unnecessary tuple call in SQLInsertCompiler.David Smith
2022-04-07Fixed #33618 -- Fixed MTI updates outside of primary key chain.Simon Charette
2022-03-31Removed unnecessary Query.get_loaded_field_names_cb() and Query.deferred_to_d...Mariusz Felisiak
2022-03-31Refs #24020 -- Removed redundant Query.get_loaded_field_names().Mariusz Felisiak
2022-03-16Refs #30581 -- Allowed sql.Query to be used without model.Gagaro
2022-02-07Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2022-01-19Fixed #31685 -- Added support for updating conflicts to QuerySet.bulk_create().sean_c_hsu
2022-01-17Fixed #29338 -- Allowed using combined queryset in Subquery.Mariusz Felisiak
2021-11-23Fixed #33309 -- Fixed QuerySet.distinct() crash on mixed case annotation.arsalan.ghassemi
2021-11-19Refs #24121 -- Added __repr__() to BaseDatabaseWrapper, JoinPromoter, and SQL...Jonny Park
2021-11-03Fixed #33260 -- Fixed crash when chaining QuerySet.exists() after select_for_...Hannes Ljungberg
2021-09-29Fixed #33018 -- Fixed annotations with empty queryset.David Wobrock
2021-09-17Refs #27624 -- Changed Query.explain_info to namedtuple.Adam Johnson
2021-07-28Refs #32946 -- Changed Query.add_filter() to take two arguments.Keryn Knight
2021-07-22Fixed #32951 -- Removed Query.where_class & co.Nick Pope
2021-07-16Prevented SQLCompiler.execute_sql() from closing cursor twice.Nick Pope
2021-07-05Fixed #32226 -- Fixed JSON format of QuerySet.explain() on PostgreSQL.Wu Haotian
2021-07-02Fixed #26430 -- Fixed coalesced aggregation of empty result sets.Simon Charette
2021-06-30Refs #32786 -- Made Query.clear_ordering() not to cause side effects by default.Hannes Ljungberg
2021-05-04Fixed #32693 -- Quoted and lowercased generated column aliases.Hasan Ramezani
2021-04-27Refs #32682 -- Fixed QuerySet.delete() crash on querysets with self-referenti...Mariusz Felisiak
2021-04-21Fixed #32662 -- Refactored a generator out of SQLCompiler.get_order_by().Chris Jerdonek
2021-04-12Fixed #32627 -- Fixed QuerySet.values()/values_list() crash on combined query...Iuri de Silvio
2021-04-07Fixed #32442 -- Used converters on returning fields from INSERT statements.Adam Johnson
2021-03-16Fixed #32546 -- Avoided Meta.ordering columns in GROUP BY clauses.Yuri Konotopov
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-02Fixed #32060 -- Added Random database function.Nick Pope
2020-09-17Fixed #31916 -- Fixed combined queryset crash when combining with ordered com...Hasan Ramezani
2020-08-31Fixed #31965 -- Adjusted multi-table fast-deletion on MySQL/MariaDB.Simon Charette
2020-08-13Fixed #31792 -- Made Exists() reuse QuerySet.exists() optimizations.Simon Charette
2020-08-11Fixed #31866 -- Fixed locking proxy models in QuerySet.select_for_update(of=()).Daniel Hillier
2020-06-10Fixed #31657 -- Fixed ordering by attnames of self-referential ForeignKeys.Hasan Ramezani
2020-05-26Fixed #31614 -- Fixed aliases ordering by OrderBy() expressions of combined q...Laurent Tramoy
2020-05-25Fixed #31624 -- Avoided subquery usage on QuerySet.all().delete().Simon Charette
2020-05-21Fixed #30375 -- Added FOR NO KEY UPDATE support to QuerySet.select_for_update...Manuel Weitzman
2020-05-14Fixed #31584 -- Fixed crash when chaining values()/values_list() after Exists...Mariusz Felisiak
2020-05-11Refs #30116 -- Simplified regex match group access with Match.__getitem__().Jon Dufresne
2020-04-22Avoided unnecessary recompilation of ordering clause regex in SQLCompiler.Adam Johnson
2020-03-31Refs #31403 -- Made SQLInsertCompiler.execute_sql() always return an iterable...Adam Johnson
2020-03-19Fixed #31285 -- Fixed inherited Meta.ordering of "-pk".Jon Dufresne
2020-02-11Fixed #31246 -- Fixed locking models in QuerySet.select_for_update(of=()) for...Abhijeet Viswa
2020-02-04Simplified imports from django.db and django.contrib.gis.db.Nick Pope
2020-02-03Fixed #31217 -- Made QuerySet.values()/values_list() group by not selected an...Mariusz Felisiak
2019-12-19Fixed #31094 -- Included columns referenced by subqueries in GROUP BY on aggr...Simon Charette