summaryrefslogtreecommitdiff
path: root/django/db/models/sql
AgeCommit message (Expand)Author
2010-04-30[1.1.X] Fixed #12851 -- Another attempt at fixing select_related() with inher...Russell Keith-Magee
2010-04-30[1.1.X] Fixed #12851 -- Corrected the loading of values when select_related()...Russell Keith-Magee
2010-04-23[1.1.X] Fixed #11764 -- Added a missing set of parentheses in a call calculat...Russell Keith-Magee
2010-04-04[1.1.X] Fixed #12328 -- Corrected the handling of subqueries with ordering an...Russell Keith-Magee
2010-04-03[1.1.X] Fixed #12247 -- Corrected the way update queries are processed when t...Russell Keith-Magee
2010-03-31[1.1.X] Fixed #11916 -- Corrected handling of aggregation when there is a sub...Russell Keith-Magee
2010-03-21[1.1.X] Fixed #12822: Don't copy the _aggregate_select_cache when cloning a q...Karen Tracey
2010-03-08[1.1.X] Fixed #12240 - select_related doesn't work correctly when mixing null...Luke Plant
2010-03-07[1.1.X] Fixed #12876 -- Corrected a problem with recursive relations under de...Russell Keith-Magee
2010-02-26[1.1.X] Fixed a bunch of Python 2.3 incompatibilities that had crept into the...Karen Tracey
2010-02-23Fixed #12855 -- QuerySets? with extra where parameters now combine correctly....Justin Bronn
2010-02-10[1.1.X] Fixed #11535: Corrected SQL generated for queries involving generic r...Karen Tracey
2010-01-29[1.1.X] Really this time -- fixed #12721: Ensured objects with generic relati...Karen Tracey
2009-12-17[1.1.X] Fixed #11753 - Q objects with callables no longer explode on Python 2...Jacob Kaplan-Moss
2009-11-19[1.1.X] Fixed #12242 -- Corrected a problem with masking extra selects() in a...Russell Keith-Magee
2009-09-16[1.1.X] Fixed #11886 -- Corrected handling of F() expressions that use parent...Russell Keith-Magee
2009-06-06Fixed #11082 -- Ensured that subqueries used in an exclude(X__in=) clause are...Russell Keith-Magee
2009-06-06Fixed #10572 -- Corrected the operation of the defer() and only() clauses whe...Russell Keith-Magee
2009-05-29Fixed #11216 and #11218 -- Corrected a few typos, thanks buriy.Gary Wilson Jr
2009-05-11Fixed #10953, #10955: proxies of proxies now work correctly, though I still d...Jacob Kaplan-Moss
2009-04-30Fixed #10847 -- Modified handling of extra() to use a masking strategy, rathe...Russell Keith-Magee
2009-04-11Fixed #10796 -- Corrected a pickling problem introduced by [10522]. Thanks to...Russell Keith-Magee
2009-04-11Fixed #10197 -- Corrected pickling of querysets when a subset of fields was s...Russell Keith-Magee
2009-04-11Fixed #10766 -- Raise an error when annotate() references another aggreagte()...Russell Keith-Magee
2009-04-08Fixed #10666 -- Corrected the handling of inherited fields with aggregate() a...Russell Keith-Magee
2009-04-04Fixed a problem when computing deferred fields on multiple related models.Malcolm Tredinnick
2009-04-02Fixed #10670: fixed reusing QuerySets previously used in a filter expression....Jacob Kaplan-Moss
2009-04-01Fixed #9871 -- Geometry objects are now returned in dictionaries and tuples r...Justin Bronn
2009-03-24Fixed #9926 -- Fixes for some select_related() situations.Malcolm Tredinnick
2009-03-19Fixed #5420 -- Added support for delayed loading of model fields.Malcolm Tredinnick
2009-03-18Fixed #10356 -- Added pure-Python inheritance for models (a.k.a proxy models).Malcolm Tredinnick
2009-03-14Fixed #10425 -- Corrected the interaction of .count() with .annotate() when ....Russell Keith-Magee
2009-03-13Fixed a case where column aliases weren't being quoted properly.Ian Kelly
2009-03-13Prevented InsertQuery from appending a 'RETURNING' clause when it's not actua...Ian Kelly
2009-03-12Fixed #10473: Added Oracle support for "RETURNING" ids from insert statements.Ian Kelly
2009-03-12Return last insert ID correctly when the feature is enabled.Malcolm Tredinnick
2009-03-11Fixed #3460 -- Added an ability to enable true autocommit for psycopg2 backend.Malcolm Tredinnick
2009-03-09Pass values through get_db_prep_save() in a QuerySet.update() call.Malcolm Tredinnick
2009-03-08Fixed #10432 -- Handle all kinds of iterators in queryset filters.Malcolm Tredinnick
2009-03-06Improved table join handling for comparisons against NULL.Malcolm Tredinnick
2009-03-04Fixed #10251 -- Fixed model inheritance when there's also an explicit pk field.Malcolm Tredinnick
2009-03-04Fixed #10362 -- An update() that only affects a parent model no longer crashes.Malcolm Tredinnick
2009-03-04Changed the row count value returned from update queries in some cases.Malcolm Tredinnick
2009-03-02Fixed #10181 -- Handle an EmptyResultSet exception case properly in nested qu...Malcolm Tredinnick
2009-03-01Fixed insert/update handling when no database interaction is required.Malcolm Tredinnick
2009-03-01Fixed #10202 -- Fixed another couple of slicing edge-cases with querysets.Malcolm Tredinnick
2009-02-28Fixed #10028 -- Fixed a problem when ordering by related models.Malcolm Tredinnick
2009-02-25Fixed #10290: do not use aliases when adding extra_selects to the GROUP BY cl...Ian Kelly
2009-02-24Fixed #10161 -- Modified evaluation of query expressions to allow for operato...Russell Keith-Magee
2009-02-23Fixed #10182 -- Corrected realiasing and the process of evaluating values() f...Russell Keith-Magee