summaryrefslogtreecommitdiff
path: root/django/db/models/sql/compiler.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #33759 -- Avoided unnecessary subquery in QuerySet.delete() with self-r...4the4ryushin2023-05-011-1/+4
* Fixed #34368 -- Made subquery raise NotSupportedError when referencing outer ...Simon Charette2023-02-271-1/+1
* Fixed #34372 -- Fixed queryset crash on order by aggregation using OrderBy.Simon Charette2023-02-271-0/+2
* Fixed #34346 -- Ordered selected expressions by position.Simon Charette2023-02-201-8/+35
* Refs #34176 -- Adjusted group by position variables naming to follow SQL spec.Simon Charette2023-02-181-5/+5
* Fixed #34227 -- Fixed QuerySet.select_related() with multi-level FilteredRela...朱穆穆2023-01-241-1/+8
* Fixed #34267 -- Fixed sliced QuerySet.union() crash.Francesco Panico2023-01-201-3/+0
* Fixed #34176 -- Fixed grouping by ambiguous aliases.Simon Charette2023-01-091-15/+24
* Simplified SQLCompiler.get_group_by() a bit.Simon Charette2023-01-041-4/+2
* Fixed #34226 -- Fixed QuerySet.select_related() with multiple FilteredRelatio...朱穆穆2022-12-271-2/+2
* Refs #34226 -- Renamed local field variables in SQLCompiler.get_related_selec...Mariusz Felisiak2022-12-241-12/+16
* Refs #33308 -- Deprecated support for passing encoded JSON string literals to...Simon Charette2022-12-011-9/+3
* Fixed #34171 -- Fixed QuerySet.bulk_create() on fields with db_column in uniq...DevilsAutumn2022-11-221-2/+2
* Fixed #34123 -- Fixed combinator order by alias when using select_related().Simon Charette2022-11-151-10/+20
* Avoided unnecessary usage of RawSQL.Simon Charette2022-11-151-4/+4
* Refs #33374 -- Adjusted full match condition handling.Simon Charette2022-11-071-12/+25
* Refs #17144 -- Removed support for grouping by primary key.Simon Charette2022-11-071-35/+4
* Fixed #31331 -- Switched MySQL to group by selected primary keys.Simon Charette2022-11-071-1/+3
* Used more augmented assignment statements.Nick Pope2022-10-311-1/+1
* Fixed #34125 -- Fixed sliced QuerySet.union() crash on a single non-empty que...Simon Charette2022-10-291-1/+5
* Used Query.is_sliced in SQLCompiler.as_sql().Simon Charette2022-10-281-3/+1
* Fixed #34105 -- Fixed crash of ordering by nested selected expression.Simon Charette2022-10-181-6/+1
* Refs #31150 -- Enabled implicit GROUP BY aliases.Simon Charette2022-10-061-4/+8
* Refs #33992 -- Refactored subquery grouping logic.Simon Charette2022-10-061-2/+7
* Refs #33308 -- Enabled explicit GROUP BY and ORDER BY aliases.Simon Charette2022-10-061-5/+18
* Fixed #33768 -- Fixed ordering compound queries by nulls_first/nulls_last on ...Simon Charette2022-10-051-10/+11
* Avoided unnecessary call to .get_source_expressions().Simon Charette2022-10-041-2/+2
* Fixed #34012 -- Made QuerySet.order_by() apply transforms on related fields f...David Sanders2022-10-041-1/+3
* Refs #28333 -- Explicitly ordered outer qualify query on window filtering.Simon Charette2022-09-151-14/+42
* Fixed #33992 -- Fixed queryset crash when aggregating over a group containing...Simon Charette2022-09-081-1/+4
* Fixed #21204 -- Tracked field deferrals by field instead of models.Simon Charette2022-08-301-24/+28
* Refs #28333 -- Added partial support for filtering against window functions.Simon Charette2022-08-151-1/+75
* Refs #28333 -- Moved SQLCompiler's forced column aliasing logic to get_select().Simon Charette2022-08-111-15/+14
* Used AND, OR, XOR constants instead of hard-coded values.Nick Pope2022-07-271-1/+2
* Fixed #33796 -- Fixed ordered combined queryset crash when used in subquery o...Mariusz Felisiak2022-06-271-0/+5
* Fixed #29538 -- Fixed crash of ordering by related fields when Meta.ordering ...Ed Rivas2022-05-121-2/+7
* Refs #32226 -- Fixed JSON format of QuerySet.explain() on PostgreSQL when for...Mariusz Felisiak2022-04-191-3/+2
* Made select_for_update() don't raise TransactionManagementError on databases ...Mariusz Felisiak2022-04-141-1/+6
* Removed unnecessary tuple call in SQLInsertCompiler.David Smith2022-04-131-1/+1
* Fixed #33618 -- Fixed MTI updates outside of primary key chain.Simon Charette2022-04-071-2/+21
* Removed unnecessary Query.get_loaded_field_names_cb() and Query.deferred_to_d...Mariusz Felisiak2022-03-311-1/+1
* Refs #24020 -- Removed redundant Query.get_loaded_field_names().Mariusz Felisiak2022-03-311-1/+1
* Refs #30581 -- Allowed sql.Query to be used without model.Gagaro2022-03-161-4/+9
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-21/+10
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-283/+487
* Fixed #31685 -- Added support for updating conflicts to QuerySet.bulk_create().sean_c_hsu2022-01-191-9/+14
* Fixed #29338 -- Allowed using combined queryset in Subquery.Mariusz Felisiak2022-01-171-2/+7
* Fixed #33309 -- Fixed QuerySet.distinct() crash on mixed case annotation.arsalan.ghassemi2021-11-231-1/+1
* Refs #24121 -- Added __repr__() to BaseDatabaseWrapper, JoinPromoter, and SQL...Jonny Park2021-11-191-0/+7
* Fixed #33260 -- Fixed crash when chaining QuerySet.exists() after select_for_...Hannes Ljungberg2021-11-031-0/+2