index
:
delta/python-packages/django.git
1.8
15667
16682
24046
24215
24525
26176
3.2-man-page
4.0/make-zoneinfo-default-timezone-implementation-squashed
alex-patch-1
attic/boulder-oracle-sprint
attic/full-history
attic/generic-auth
attic/gis
attic/i18n
attic/magic-removal
attic/multi-auth
attic/multiple-db-support
attic/new-admin
attic/newforms-admin
attic/per-object-permissions
attic/queryset-refactor
attic/schema-evolution
attic/schema-evolution-ng
attic/search-api
attic/sqlalchemy
attic/unicode
c/29988-allow-f-strings
c/32409-async-tests-cannot-call-orm
c/append-slash-opt-out
c/replace-utcnow
c/use-bpo-extlink
dep0005
dep5
fix-cache-test
fix/remove-stray-file
issue/31570
link-to-code-of-conduct
main
make-zoneinfo-default-timezone-implementation
master
remove-unnecesary-if-wrap
selenium-updates
sir-sigurd-patch-1
soc2009/admin-ui
soc2009/http-wsgi-improvements
soc2009/i18n-improvements
soc2009/model-validation
soc2009/multidb
soc2009/test-improvements
soc2010/app-loading
soc2010/query-refactor
soc2010/test-refactor
stable/0.90.x
stable/0.91.x
stable/0.95.x
stable/0.96.x
stable/1.0.x
stable/1.1.x
stable/1.10.x
stable/1.11.x
stable/1.2.x
stable/1.3.x
stable/1.4.x
stable/1.5.x
stable/1.6.x
stable/1.7.x
stable/1.8.x
stable/1.9.x
stable/2.0.x
stable/2.1.x
stable/2.2.x
stable/3.0.x
stable/3.1.x
stable/3.2.x
stable/4.0.x
stable/4.1.x
stable/4.2.x
swap-closing-quote-period-in-admin-i18nable-literal
ticket-25055
ticket-31342
update-next-docs-version
github.com: django/django.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
db
/
models
/
sql
/
compiler.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed #33759 -- Avoided unnecessary subquery in QuerySet.delete() with self-r...
4the4ryushin
2023-05-01
1
-1
/
+4
*
Fixed #34368 -- Made subquery raise NotSupportedError when referencing outer ...
Simon Charette
2023-02-27
1
-1
/
+1
*
Fixed #34372 -- Fixed queryset crash on order by aggregation using OrderBy.
Simon Charette
2023-02-27
1
-0
/
+2
*
Fixed #34346 -- Ordered selected expressions by position.
Simon Charette
2023-02-20
1
-8
/
+35
*
Refs #34176 -- Adjusted group by position variables naming to follow SQL spec.
Simon Charette
2023-02-18
1
-5
/
+5
*
Fixed #34227 -- Fixed QuerySet.select_related() with multi-level FilteredRela...
朱穆穆
2023-01-24
1
-1
/
+8
*
Fixed #34267 -- Fixed sliced QuerySet.union() crash.
Francesco Panico
2023-01-20
1
-3
/
+0
*
Fixed #34176 -- Fixed grouping by ambiguous aliases.
Simon Charette
2023-01-09
1
-15
/
+24
*
Simplified SQLCompiler.get_group_by() a bit.
Simon Charette
2023-01-04
1
-4
/
+2
*
Fixed #34226 -- Fixed QuerySet.select_related() with multiple FilteredRelatio...
朱穆穆
2022-12-27
1
-2
/
+2
*
Refs #34226 -- Renamed local field variables in SQLCompiler.get_related_selec...
Mariusz Felisiak
2022-12-24
1
-12
/
+16
*
Refs #33308 -- Deprecated support for passing encoded JSON string literals to...
Simon Charette
2022-12-01
1
-9
/
+3
*
Fixed #34171 -- Fixed QuerySet.bulk_create() on fields with db_column in uniq...
DevilsAutumn
2022-11-22
1
-2
/
+2
*
Fixed #34123 -- Fixed combinator order by alias when using select_related().
Simon Charette
2022-11-15
1
-10
/
+20
*
Avoided unnecessary usage of RawSQL.
Simon Charette
2022-11-15
1
-4
/
+4
*
Refs #33374 -- Adjusted full match condition handling.
Simon Charette
2022-11-07
1
-12
/
+25
*
Refs #17144 -- Removed support for grouping by primary key.
Simon Charette
2022-11-07
1
-35
/
+4
*
Fixed #31331 -- Switched MySQL to group by selected primary keys.
Simon Charette
2022-11-07
1
-1
/
+3
*
Used more augmented assignment statements.
Nick Pope
2022-10-31
1
-1
/
+1
*
Fixed #34125 -- Fixed sliced QuerySet.union() crash on a single non-empty que...
Simon Charette
2022-10-29
1
-1
/
+5
*
Used Query.is_sliced in SQLCompiler.as_sql().
Simon Charette
2022-10-28
1
-3
/
+1
*
Fixed #34105 -- Fixed crash of ordering by nested selected expression.
Simon Charette
2022-10-18
1
-6
/
+1
*
Refs #31150 -- Enabled implicit GROUP BY aliases.
Simon Charette
2022-10-06
1
-4
/
+8
*
Refs #33992 -- Refactored subquery grouping logic.
Simon Charette
2022-10-06
1
-2
/
+7
*
Refs #33308 -- Enabled explicit GROUP BY and ORDER BY aliases.
Simon Charette
2022-10-06
1
-5
/
+18
*
Fixed #33768 -- Fixed ordering compound queries by nulls_first/nulls_last on ...
Simon Charette
2022-10-05
1
-10
/
+11
*
Avoided unnecessary call to .get_source_expressions().
Simon Charette
2022-10-04
1
-2
/
+2
*
Fixed #34012 -- Made QuerySet.order_by() apply transforms on related fields f...
David Sanders
2022-10-04
1
-1
/
+3
*
Refs #28333 -- Explicitly ordered outer qualify query on window filtering.
Simon Charette
2022-09-15
1
-14
/
+42
*
Fixed #33992 -- Fixed queryset crash when aggregating over a group containing...
Simon Charette
2022-09-08
1
-1
/
+4
*
Fixed #21204 -- Tracked field deferrals by field instead of models.
Simon Charette
2022-08-30
1
-24
/
+28
*
Refs #28333 -- Added partial support for filtering against window functions.
Simon Charette
2022-08-15
1
-1
/
+75
*
Refs #28333 -- Moved SQLCompiler's forced column aliasing logic to get_select().
Simon Charette
2022-08-11
1
-15
/
+14
*
Used AND, OR, XOR constants instead of hard-coded values.
Nick Pope
2022-07-27
1
-1
/
+2
*
Fixed #33796 -- Fixed ordered combined queryset crash when used in subquery o...
Mariusz Felisiak
2022-06-27
1
-0
/
+5
*
Fixed #29538 -- Fixed crash of ordering by related fields when Meta.ordering ...
Ed Rivas
2022-05-12
1
-2
/
+7
*
Refs #32226 -- Fixed JSON format of QuerySet.explain() on PostgreSQL when for...
Mariusz Felisiak
2022-04-19
1
-3
/
+2
*
Made select_for_update() don't raise TransactionManagementError on databases ...
Mariusz Felisiak
2022-04-14
1
-1
/
+6
*
Removed unnecessary tuple call in SQLInsertCompiler.
David Smith
2022-04-13
1
-1
/
+1
*
Fixed #33618 -- Fixed MTI updates outside of primary key chain.
Simon Charette
2022-04-07
1
-2
/
+21
*
Removed unnecessary Query.get_loaded_field_names_cb() and Query.deferred_to_d...
Mariusz Felisiak
2022-03-31
1
-1
/
+1
*
Refs #24020 -- Removed redundant Query.get_loaded_field_names().
Mariusz Felisiak
2022-03-31
1
-1
/
+1
*
Refs #30581 -- Allowed sql.Query to be used without model.
Gagaro
2022-03-16
1
-4
/
+9
*
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Mariusz Felisiak
2022-02-07
1
-21
/
+10
*
Refs #33476 -- Reformatted code with Black.
django-bot
2022-02-07
1
-283
/
+487
*
Fixed #31685 -- Added support for updating conflicts to QuerySet.bulk_create().
sean_c_hsu
2022-01-19
1
-9
/
+14
*
Fixed #29338 -- Allowed using combined queryset in Subquery.
Mariusz Felisiak
2022-01-17
1
-2
/
+7
*
Fixed #33309 -- Fixed QuerySet.distinct() crash on mixed case annotation.
arsalan.ghassemi
2021-11-23
1
-1
/
+1
*
Refs #24121 -- Added __repr__() to BaseDatabaseWrapper, JoinPromoter, and SQL...
Jonny Park
2021-11-19
1
-0
/
+7
*
Fixed #33260 -- Fixed crash when chaining QuerySet.exists() after select_for_...
Hannes Ljungberg
2021-11-03
1
-0
/
+2
[next]