index
:
django.git
fix-31295
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
db
/
models
/
sql
/
subqueries.py
Age
Commit message (
Expand
)
Author
2010-07-17
[soc2010/query-refactor] Implemented deletion. Thanks to Josh Ourisman for p...
Alex Gaynor
2010-04-03
Fixed #12247 -- Corrected the way update queries are processed when the updat...
Russell Keith-Magee
2010-03-15
Fixed #12953 -- Ensure that deletion cascades through generic relations. Also...
Russell Keith-Magee
2010-01-29
Fixed #12721: Ensured objects with generic relations that use non-integer obj...
Karen Tracey
2009-12-22
Fixed #1142 -- Added multiple database support.
Russell Keith-Magee
2009-11-19
Fixed #12242 -- Corrected a problem with masking extra selects() in a DateQue...
Russell Keith-Magee
2009-04-30
Fixed #10847 -- Modified handling of extra() to use a masking strategy, rathe...
Russell Keith-Magee
2009-03-13
Prevented InsertQuery from appending a 'RETURNING' clause when it's not actua...
Ian Kelly
2009-03-12
Fixed #10473: Added Oracle support for "RETURNING" ids from insert statements.
Ian Kelly
2009-03-12
Return last insert ID correctly when the feature is enabled.
Malcolm Tredinnick
2009-03-11
Fixed #3460 -- Added an ability to enable true autocommit for psycopg2 backend.
Malcolm Tredinnick
2009-03-09
Pass values through get_db_prep_save() in a QuerySet.update() call.
Malcolm Tredinnick
2009-03-04
Fixed #10362 -- An update() that only affects a parent model no longer crashes.
Malcolm Tredinnick
2009-03-04
Changed the row count value returned from update queries in some cases.
Malcolm Tredinnick
2009-03-01
Fixed insert/update handling when no database interaction is required.
Malcolm Tredinnick
2009-01-29
Fixed #7210 -- Added F() expressions to query language. See the documentation...
Russell Keith-Magee
2009-01-15
Fixed #3566 -- Added support for aggregation to the ORM. See the documentatio...
Russell Keith-Magee
2009-01-05
Reconciling where- and having-clause behaviour.
Malcolm Tredinnick
2008-10-05
Fixed #9068 -- Fixed a couple of typos in InsertQuery.clone(). Thanks, rush.
Malcolm Tredinnick
2008-09-28
Fixed Queryset.dates() in the presence of extra-select columns.
Malcolm Tredinnick
2008-09-11
Fixed a typo so that cloning UpdateQuery objects won't fail mysteriously.
Malcolm Tredinnick
2008-09-01
Fixed extra_select with DateQuery in Oracle
Ian Kelly
2008-08-20
Made it possible to pickle DateQuerySets.
Malcolm Tredinnick
2008-08-09
Added the ability to force an SQL insert (or force an update) via a model's
Malcolm Tredinnick
2008-07-04
Redo the changes in [7773] in a better way.
Malcolm Tredinnick
2008-06-27
Reorganised the internals of the Where node a bit to fix some copying problems.
Malcolm Tredinnick
2008-06-26
Fixed #7105 -- Fixed dates() queries in light of model inheritance.
Malcolm Tredinnick
2008-06-15
Fixed #7387 - Fixed circular import problem when importing `contrib.contentty...
Gary Wilson Jr
2008-04-28
Made some types of nested update queries very slightly more efficient at the
Malcolm Tredinnick
2008-04-28
Migrated _setup_query() docstring to America
Adrian Holovaty
2008-04-28
Fixed #7097 -- dates() queries now work as expected with select_related() -- ...
Adrian Holovaty
2008-04-27
Merged the queryset-refactor branch into trunk.
Malcolm Tredinnick