summaryrefslogtreecommitdiff
path: root/django/db/models/sql/query.py
AgeCommit message (Expand)Author
2009-10-25Fixed #12079: Changed has_results to get a single result, thus preventing exi...Karen Tracey
2009-10-24Fixed #11402: added a `QuerySet.exists()` method. Thanks, Alex Gaynor.Jacob Kaplan-Moss
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-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-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-23Fixed #10182 -- Corrected realiasing and the process of evaluating values() f...Russell Keith-Magee
2009-02-16Fixed #10248 -- Corrected handling of the GROUP BY clause when using a DateQu...Russell Keith-Magee
2009-02-16Fixed #10132 -- Corrected the interaction of extra() queries with the values(...Russell Keith-Magee
2009-02-02Fixed #10127 -- Corrected handling of select_related() in annotate() calls. T...Russell Keith-Magee
2009-01-29Fixed #7210 -- Added F() expressions to query language. See the documentation...Russell Keith-Magee
2009-01-24Refs #10113 -- Modified the generated SQL to remove redundant GROUP BY elemen...Russell Keith-Magee
2009-01-24Fixed #10113 -- Ensured that joined fields mentioned in order_by() are includ...Russell Keith-Magee
2009-01-23Fixed #10089 -- Corrected handling of aggregates when the query set contains ...Russell Keith-Magee
2009-01-23Fixed #10100 -- Corrected handling of the negation required exclude() clauses...Russell Keith-Magee
2009-01-20Fixed #10064 -- Corrected handling of aggregate queries that also use select_...Russell Keith-Magee
2009-01-15Fixed #3566 -- Added support for aggregation to the ORM. See the documentatio...Russell Keith-Magee
2009-01-08Fixed #9985 -- qs.values_list(...).values(...) was constructing incorrect SQL.Malcolm Tredinnick
2009-01-08Remove any ordering from a nested select query (in the where-clause).Malcolm Tredinnick
2009-01-05Nested query support.Malcolm Tredinnick
2009-01-05Reconciling where- and having-clause behaviour.Malcolm Tredinnick
2008-12-10If an SQL query doesn't specify any ordering, avoid the implicit sortMalcolm Tredinnick
2008-12-09Fixed #9778 -- Added some special casing of the "Join on field 'abc'" errorMalcolm Tredinnick
2008-12-08This fixes a group of problems in the SQL created by QuerySet.exclude() whenMalcolm Tredinnick
2008-12-07Fixed #9188 -- Fixed a case where we were generating syntactically invalid SQ...Malcolm Tredinnick
2008-10-24Fixed #9307 -- Added the ability to pickle the Query class used by the OracleMalcolm Tredinnick
2008-10-24Fixed #9406 -- Ensure that each database column is only represented once in theMalcolm Tredinnick
2008-10-08A queryset that has had ordering removed (order_by()) can have ordering addedMalcolm Tredinnick
2008-10-08Applying a limit to a queryset that already had an upper limit of 0 wasn'tMalcolm Tredinnick
2008-09-22Fixed a missing variable initialisation deep in the Query bowels.Malcolm Tredinnick