summaryrefslogtreecommitdiff
path: root/django/db/models/query.py
AgeCommit message (Expand)Author
2010-08-09[soc2010/query-refactor] Merged up to trunk r13556, resolved merge conflictsarchive/soc2010/query-refactorAlex Gaynor
2010-07-13[soc2010/query-refactor] Implemented F() expressions for MongoDB.Alex Gaynor
2010-06-21[soc2010/query-refactor] Implemented values (and values_list).Alex Gaynor
2010-06-09[soc2010/query-refactor] Fixed update on MongoDB.Alex Gaynor
2010-06-07[soc2010/query-refactor] Moved has_results (implementation of exists()) onto ...Alex Gaynor
2010-06-07[soc2010/query-refactor] Refactor, and implement a few more methods to get mo...Alex Gaynor
2010-04-30Fixed #12851 -- Another attempt at fixing select_related() with inherited mod...Russell Keith-Magee
2010-04-13Fixed #13227 -- Ensure that the query cache is flushed when a QuerySet is dee...Russell Keith-Magee
2010-04-09Fixed #13309 -- Ensure that delete() deletes everything it should delete(). T...Russell Keith-Magee
2010-04-04Fixed #12328 -- Corrected the handling of subqueries with ordering and slicin...Russell Keith-Magee
2010-04-01Fixed #12429 -- Ensure that raw queries call resolve_columns if the backend d...Russell Keith-Magee
2010-03-20Fixed #12851 -- Corrected the interaction of defer() with select_related(). T...Russell Keith-Magee
2010-03-20Fixed #12937 -- Corrected the operation of select_related() when following an...Russell Keith-Magee
2010-03-15Fixed #12953 -- Ensure that deletion cascades through generic relations. Also...Russell Keith-Magee
2010-03-10Fixed #12717 -- Corrected a problem with subqueries when using multidb routin...Russell Keith-Magee
2010-03-07Fixed #13003 -- Ensured that ._state.db is set correctly for select_related()...Russell Keith-Magee
2010-02-23Fixed #12731. Fixed a bug with .raw() and inheritance. Thanks, Alex Gaynor.Joseph Kocherhans
2010-02-23Fixed #12819. Fixed a bug with caching values of nullable 1to1 fields. Thanks...Joseph Kocherhans
2010-02-23Fixed #12608 -- No longer return inconsistent results when using `values` and...Justin Bronn
2010-02-23Fixed #12806 -- Added an implementation of `RawQuerySet.__getitem__`. Thanks...Justin Bronn
2010-01-27Fixed #7270 -- Added the ability to follow reverse OneToOneFields in select_r...Russell Keith-Magee
2010-01-22Fixed #12540, #12541 -- Added database routers, allowing for configurable dat...Russell Keith-Magee
2010-01-10Changed a whole bunch of places to raise exception instances instead of old-s...Adrian Holovaty
2010-01-10Fixed #12142 -- EmptyQuerySet.update() no longer updates all rows in the data...Adrian Holovaty
2010-01-09Fixed #7235 -- EmptyQuerySet no longer raises and exception when it's filter(...Adrian Holovaty
2009-12-22Changes to get raw queries working on the oracle backend.Ian Kelly
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-12-20Fixed #11863: added a `Model.objects.raw()` method for executing raw SQL quer...Jacob Kaplan-Moss
2009-12-19Fixed #12258 - QuerySet.get() should clear ordering.Luke Plant
2009-12-19Fixed #12251 - QuerySet.in_bulk() should accept set/frozensetLuke Plant
2009-12-17Fixed #11753 - Q objects with callables no longer explode on Python 2.4. Than...Jacob Kaplan-Moss
2009-12-09Optimised use of 'in' operator on QuerySet using an explicit __contains__ met...Luke Plant
2009-11-03Fixed #10109 -- Removed the use of raw SQL in many-to-many fields by introduc...Russell Keith-Magee
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-06-03Fixed #9479 -- Corrected an edge case in bulk queryset deletion that could ca...Russell Keith-Magee
2009-05-19Fixed #9308 -- Corrected the updated of nullable foreign key fields when dele...Russell Keith-Magee
2009-04-30Fixed #10847 -- Modified handling of extra() to use a masking strategy, rathe...Russell Keith-Magee
2009-04-22Added a `QuerySet.ordered` property to check if a queryset is already ordered...Jacob Kaplan-Moss
2009-04-04Fixed deferred fields and select_related() interaction.Malcolm Tredinnick
2009-04-04Fixed #10695 -- Fixed implementation of deferred attribute retrieval.Malcolm Tredinnick
2009-03-19Typo fix for an error path in r100090.Malcolm Tredinnick
2009-03-19Fixed #5420 -- Added support for delayed loading of model fields.Malcolm Tredinnick
2009-03-11Fixed #3460 -- Added an ability to enable true autocommit for psycopg2 backend.Malcolm Tredinnick
2009-03-01To avoid an unfortunately common user-error, rename QuerySet.as_sql().Malcolm Tredinnick
2009-02-23Fixed #10182 -- Corrected realiasing and the process of evaluating values() f...Russell Keith-Magee
2009-02-16Fixed #10132 -- Corrected the interaction of extra() queries with the values(...Russell Keith-Magee
2009-02-16Fixed #10256 -- Corrected the interaction of extra(select=) with values() and...Russell Keith-Magee
2009-02-08Fixed #10199 -- Modified aggregate() calls to clone the base query so that th...Russell Keith-Magee