summaryrefslogtreecommitdiff
path: root/django/db/models/sql/query.py
AgeCommit message (Expand)Author
2009-12-21[soc2009/multidb] A couple of cleanups of multi-db support for raw queries, i...Alex Gaynor
2009-12-21[soc2009/multidb] Correct the handling of raw and defered fields with multi-db.Alex Gaynor
2009-12-20[soc2009/multidb] Merged up to trunk r11921. This does not include updating...Alex Gaynor
2009-12-17[soc2009/multidb] Merged up to trunk r11901.Alex Gaynor
2009-12-12[soc2009/multidb] Merged in all of Justin Bronn's GIS work. Multidb should ...Alex Gaynor
2009-12-12[soc2009/multidb] Merged up to trunk r11810. There are many conflicts in thi...Alex Gaynor
2009-12-09[soc2009/multidb] Merged up to trunk r11804.Alex Gaynor
2009-12-03[soc2009/multidb] Cleaned up the double processing required by validate() by ...Alex Gaynor
2009-11-21[soc2009/multidb] Split SQL construction into two seperate classes, the Query...Alex Gaynor
2009-11-21[soc2009/multidb] Merged up to trunk r11756.Alex Gaynor
2009-08-04[soc2009/multidb] Support multiple databases where one of them has a custom Q...Alex Gaynor
2009-07-20[soc2009/multidb] Correctly handle pickling of Query objects, restoring them ...Alex Gaynor
2009-06-19[soc2009/multidb] Removed the as_sql_takes_connection option from various cla...Alex Gaynor
2009-06-08[soc2009/multidb] Fixed test failures that were introduced in r10943Alex Gaynor
2009-06-07[soc2009/multidb] Updated DateQuery to work correctly with multiple databasesAlex Gaynor
2009-06-06[soc2009/multidb] Fixed the usage of the connection during Query construction...Alex Gaynor
2009-06-06[soc2009/multidb] Merged up to trunk r10931. Resolved the slight merge conflictAlex Gaynor
2009-06-03[soc2009/multidb] Bring this branch up to date with my external work. This m...Alex Gaynor
2009-06-03[soc2009/multidb] Removed several instances of unnescary usage of the global ...Alex Gaynor
2009-06-02[soc2009/multidb] Merged up to trunk r10865Alex Gaynor
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