summaryrefslogtreecommitdiff
path: root/django/db/models/query.py
Commit message (Expand)AuthorAgeFilesLines
* [soc2010/app-loading] merged trunkarchive/soc2010/app-loadingsoc2010/app-loadingArthur Koziel2010-09-131-2/+3
* Fixed #12851 -- Another attempt at fixing select_related() with inherited mod...Russell Keith-Magee2010-04-301-1/+11
* Fixed #13227 -- Ensure that the query cache is flushed when a QuerySet is dee...Russell Keith-Magee2010-04-131-4/+5
* Fixed #13309 -- Ensure that delete() deletes everything it should delete(). T...Russell Keith-Magee2010-04-091-1/+2
* Fixed #12328 -- Corrected the handling of subqueries with ordering and slicin...Russell Keith-Magee2010-04-041-3/+6
* Fixed #12429 -- Ensure that raw queries call resolve_columns if the backend d...Russell Keith-Magee2010-04-011-2/+9
* Fixed #12851 -- Corrected the interaction of defer() with select_related(). T...Russell Keith-Magee2010-03-201-2/+2
* Fixed #12937 -- Corrected the operation of select_related() when following an...Russell Keith-Magee2010-03-201-6/+27
* Fixed #12953 -- Ensure that deletion cascades through generic relations. Also...Russell Keith-Magee2010-03-151-2/+0
* Fixed #12717 -- Corrected a problem with subqueries when using multidb routin...Russell Keith-Magee2010-03-101-2/+2
* Fixed #13003 -- Ensured that ._state.db is set correctly for select_related()...Russell Keith-Magee2010-03-071-9/+15
* Fixed #12731. Fixed a bug with .raw() and inheritance. Thanks, Alex Gaynor.Joseph Kocherhans2010-02-231-1/+1
* Fixed #12819. Fixed a bug with caching values of nullable 1to1 fields. Thanks...Joseph Kocherhans2010-02-231-1/+1
* Fixed #12608 -- No longer return inconsistent results when using `values` and...Justin Bronn2010-02-231-1/+2
* Fixed #12806 -- Added an implementation of `RawQuerySet.__getitem__`. Thanks...Justin Bronn2010-02-231-0/+3
* Fixed #7270 -- Added the ability to follow reverse OneToOneFields in select_r...Russell Keith-Magee2010-01-271-1/+73
* Fixed #12540, #12541 -- Added database routers, allowing for configurable dat...Russell Keith-Magee2010-01-221-7/+18
* Changed a whole bunch of places to raise exception instances instead of old-s...Adrian Holovaty2010-01-101-1/+1
* Fixed #12142 -- EmptyQuerySet.update() no longer updates all rows in the data...Adrian Holovaty2010-01-101-0/+6
* Fixed #7235 -- EmptyQuerySet no longer raises and exception when it's filter(...Adrian Holovaty2010-01-091-0/+75
* Changes to get raw queries working on the oracle backend.Ian Kelly2009-12-221-1/+2
* Fixed #1142 -- Added multiple database support.Russell Keith-Magee2009-12-221-49/+110
* Fixed #11863: added a `Model.objects.raw()` method for executing raw SQL quer...Jacob Kaplan-Moss2009-12-201-2/+85
* Fixed #12258 - QuerySet.get() should clear ordering.Luke Plant2009-12-191-0/+2
* Fixed #12251 - QuerySet.in_bulk() should accept set/frozensetLuke Plant2009-12-191-1/+1
* Fixed #11753 - Q objects with callables no longer explode on Python 2.4. Than...Jacob Kaplan-Moss2009-12-171-1/+1
* Optimised use of 'in' operator on QuerySet using an explicit __contains__ met...Luke Plant2009-12-091-0/+30
* Fixed #10109 -- Removed the use of raw SQL in many-to-many fields by introduc...Russell Keith-Magee2009-11-031-2/+4
* Fixed #11402: added a `QuerySet.exists()` method. Thanks, Alex Gaynor.Jacob Kaplan-Moss2009-10-241-7/+5
* Fixed #11082 -- Ensured that subqueries used in an exclude(X__in=) clause are...Russell Keith-Magee2009-06-061-0/+13
* Fixed #10572 -- Corrected the operation of the defer() and only() clauses whe...Russell Keith-Magee2009-06-061-1/+19
* Fixed #9479 -- Corrected an edge case in bulk queryset deletion that could ca...Russell Keith-Magee2009-06-031-1/+2
* Fixed #9308 -- Corrected the updated of nullable foreign key fields when dele...Russell Keith-Magee2009-05-191-3/+3
* Fixed #10847 -- Modified handling of extra() to use a masking strategy, rathe...Russell Keith-Magee2009-04-301-8/+9
* Added a `QuerySet.ordered` property to check if a queryset is already ordered...Jacob Kaplan-Moss2009-04-221-0/+17
* Fixed deferred fields and select_related() interaction.Malcolm Tredinnick2009-04-041-23/+26
* Fixed #10695 -- Fixed implementation of deferred attribute retrieval.Malcolm Tredinnick2009-04-041-18/+17
* Typo fix for an error path in r100090.Malcolm Tredinnick2009-03-191-1/+1
* Fixed #5420 -- Added support for delayed loading of model fields.Malcolm Tredinnick2009-03-191-106/+87
* Fixed #3460 -- Added an ability to enable true autocommit for psycopg2 backend.Malcolm Tredinnick2009-03-111-47/+71
* To avoid an unfortunately common user-error, rename QuerySet.as_sql().Malcolm Tredinnick2009-03-011-5/+2
* Fixed #10182 -- Corrected realiasing and the process of evaluating values() f...Russell Keith-Magee2009-02-231-4/+12
* Fixed #10132 -- Corrected the interaction of extra() queries with the values(...Russell Keith-Magee2009-02-161-1/+2
* Fixed #10256 -- Corrected the interaction of extra(select=) with values() and...Russell Keith-Magee2009-02-161-18/+34
* Fixed #10199 -- Modified aggregate() calls to clone the base query so that th...Russell Keith-Magee2009-02-081-2/+4
* Fixed #10127 -- Corrected (no, really, this time!) the way the select_related...Russell Keith-Magee2009-02-031-2/+4
* Fixed #10127 -- Corrected handling of select_related() in annotate() calls. T...Russell Keith-Magee2009-02-021-2/+2
* Fixed #9997 -- Fixed use of ValuesQuerySets as rvalues in filters.Malcolm Tredinnick2009-01-161-0/+14
* Fixed #3566 -- Added support for aggregation to the ORM. See the documentatio...Russell Keith-Magee2009-01-151-7/+82
* Fixed #9985 -- qs.values_list(...).values(...) was constructing incorrect SQL.Malcolm Tredinnick2009-01-081-1/+5