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
/
subqueries.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed #33618 -- Fixed MTI updates outside of primary key chain.
Simon Charette
2022-04-07
1
-1
/
+1
*
Refs #33476 -- Reformatted code with Black.
django-bot
2022-02-07
1
-18
/
+24
*
Fixed #31685 -- Added support for updating conflicts to QuerySet.bulk_create().
sean_c_hsu
2022-01-19
1
-2
/
+4
*
Refs #32946 -- Changed Query.add_filter() to take two arguments.
Keryn Knight
2021-07-28
1
-5
/
+6
*
Fixed #32951 -- Removed Query.where_class & co.
Nick Pope
2021-07-22
1
-2
/
+2
*
Fixed #31910 -- Fixed crash of GIS aggregations over subqueries.
Simon Charette
2020-11-04
1
-3
/
+3
*
Fixed #31233 -- Closed database connections and cursors after use.
Jon Dufresne
2020-02-06
1
-1
/
+4
*
Fixed #23576 -- Implemented multi-alias fast-path deletion in MySQL backend.
Simon Charette
2019-10-24
1
-35
/
+0
*
Fixed #28668 -- Allowed QuerySet.bulk_create() to ignore insert conflicts.
Tom
2018-08-03
1
-1
/
+2
*
Fixed #28820 -- Eliminated an extra query with QuerySet.update() on proxy mod...
Yan Mitrofanov
2017-11-21
1
-1
/
+1
*
Refs #20880 -- Removed non-cloning logic from Query.clone().
Anssi Kääriäinen
2017-07-31
1
-5
/
+6
*
Removed useless hasattr in UpdateQuery._setup_query().
Tim Graham
2017-07-08
1
-2
/
+1
*
Removed obsolete Query.tables attribute.
Anssi Kääriäinen
2017-06-29
1
-3
/
+3
*
Refs #27624 -- Made many attributes of Query immutable.
Adam Johnson
2017-03-08
1
-3
/
+2
*
Refs #27656 -- Updated django.db docstring verbs according to PEP 257.
Anton Samarchyan
2017-02-28
1
-22
/
+8
*
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-25
1
-3
/
+3
*
Refs #23919 -- Removed most of remaining six usage
Claude Paroz
2017-01-18
1
-3
/
+2
*
Fixed #20939 -- Simplified query generation by converting QuerySet to Query.
Tim Graham
2016-10-28
1
-4
/
+2
*
Removed unused 'field' argument to DeleteQuery.delete_batch().
Tim Graham
2016-10-15
1
-3
/
+2
*
Removed unused InsertQuery.clone().
Tim Graham
2016-10-13
1
-9
/
+0
*
Fixed #19513, #18580 -- Fixed crash on QuerySet.update() after annotate().
David Sanders
2016-06-29
1
-1
/
+5
*
Fixed E128 flake8 warnings in django/.
Tim Graham
2016-04-08
1
-2
/
+1
*
Fixed #25882 -- Prevented fast deletes matching no rows from crashing on MySQL.
Simon Charette
2015-12-14
1
-1
/
+1
*
Fixed #24509 -- Added Expression support to SQLInsertCompiler
Alex Hill
2015-09-22
1
-3
/
+3
*
Fixed #16891 -- Made Model/QuerySet.delete() return the number of deleted obj...
Alexander Sosnovskiy
2015-05-22
1
-6
/
+12
*
Sorted imports with isort; refs #23860.
Tim Graham
2015-02-06
1
-1
/
+0
*
Fixed #24268 -- removed Query.having
Anssi Kääriäinen
2015-02-04
1
-4
/
+2
*
Fixed #24164 -- Fixed Oracle GIS limited aggregation test failure.
Tim Graham
2015-01-30
1
-1
/
+4
*
Fixed #24020 -- Refactored SQL compiler to use expressions
Anssi Kääriäinen
2015-01-08
1
-2
/
+2
*
Fixed #12663 -- Formalized the Model._meta API for retrieving fields.
Daniel Pyrathon
2015-01-06
1
-3
/
+5
*
Fixed #23867 -- removed DateQuerySet hacks
Anssi Kääriäinen
2014-11-26
1
-78
/
+1
*
Fixed #14030 -- Allowed annotations to accept all expressions
Josh Smeaton
2014-11-15
1
-2
/
+2
*
Limited lines to 119 characters in django/
Tim Graham
2014-09-05
1
-1
/
+4
*
Fixed #22826 -- Improved internal usage of Query.setup_joins.
Jorge C. Leitão
2014-06-14
1
-3
/
+2
*
Made SQLCompiler.execute_sql(result_type) more explicit.
Michael Manfre
2014-02-02
1
-4
/
+4
*
Fixed #16187 -- refactored ORM lookup system
Anssi Kääriäinen
2014-01-18
1
-12
/
+8
*
Fixed E125 pep8 warnings
Christopher Medrela
2013-11-28
1
-1
/
+1
*
Fixed #21432 -- DateTimeQuery now copies tzinfo when cloning.
Loic Bistuer
2013-11-14
1
-0
/
+5
*
Fixed #21288 -- Fixed E126 pep8 warnings
Alasdair Nicol
2013-10-21
1
-1
/
+1
*
Fix small grammatical error in comment.
Andrei Picus
2013-09-24
1
-1
/
+1
*
Minor factorization.
Aymeric Augustin
2013-09-06
1
-4
/
+1
*
Fixed #20348 -- Consistently handle Promise objects in model fields.
Tai Lee
2013-07-31
1
-12
/
+0
*
A large number of stylistic cleanups across django/db/
Alex Gaynor
2013-07-08
1
-2
/
+9
*
Replaced an antiquated pattern.
Aymeric Augustin
2013-05-17
1
-1
/
+1
*
Fixed #20413 - Respect Query.get_meta()
Mike Fogel
2013-05-15
1
-5
/
+5
*
Refactored qs.add_q() and utils/tree.py
Anssi Kääriäinen
2013-03-13
1
-3
/
+3
*
Fixed #17260 -- Added time zone aware aggregation and lookups.
Aymeric Augustin
2013-02-16
1
-9
/
+39
*
Fixed #19500 -- Solved a regression in join reuse
Anssi Kääriäinen
2012-12-20
1
-1
/
+0
*
Fixed #19190 -- Refactored Query select clause attributes
Anssi Kääriäinen
2012-10-27
1
-2
/
+2
*
Fixed regression caused by #19102
Anssi Kääriäinen
2012-10-25
1
-2
/
+2
[next]