summaryrefslogtreecommitdiff
path: root/django/db/models/query.py
AgeCommit message (Expand)Author
2012-03-12Fix #17876: Corrected an exception (regression) raised where select_realted a...Karen Tracey
2012-02-28Fixed #17668 - prefetch_related does not work in in_bulkLuke Plant
2012-01-02Fixed #16340 -- Made `get_or_create()` re-raise any `IntegrityError` with its...Julien Phalip
2011-12-22Added support for modifying the effect of ``DISTINCT`` clauses so theyRamiro Morales
2011-12-09Fixed #16818 -- Fixed ORM bug with many-to-many add() method where it wasn't ...Adrian Holovaty
2011-12-05Fixed #17335 -- Added supports_select_related hook for django-nonrel. Thanks,...Adrian Holovaty
2011-11-29Small code clarification in prefetch_related code using better variable namesLuke Plant
2011-10-07Fixed #17014 - added protection against infinite recursion.Luke Plant
2011-10-07Fixed #17003 - prefetch_related should support foreign keys/one-to-oneLuke Plant
2011-10-05Fixed #16937 - added `QuerySet.prefetch_related` to prefetch many related obj...Luke Plant
2011-10-05Fixed #16902 - select_related() results in a poor perfomanceLuke Plant
2011-09-10Remove a bunch of deadcode/dead imports.Alex Gaynor
2011-09-10Ensure bulk_create returns the right value if the argument is an empty list.Alex Gaynor
2011-09-10Ensure bulk_create returns what it is supposed to.Alex Gaynor
2011-09-09Fixed #7596. Added Model.objects.bulk_create, and make use of it in several ...Alex Gaynor
2011-07-29Fixed #16472 -- Removed stale code in the query code. Thanks, fva@chtd.org.Jannis Leidel
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-07-07Fixed #16409 -- Fixed an error condition when using QuerySet only()/defer() o...Ramiro Morales
2011-05-21Fixed #11789 -- Fixed aggregates so it interacts with QuerySet none() in a wa...Ramiro Morales
2011-04-22Fixed #14729 -- RawQuerySet.__repr__ fails when params passed as list. Thanks...Jannis Leidel
2011-04-22Fixed #11283 -- Made sure that latest() clears previously specified ordering ...Jannis Leidel
2011-04-20Fixed #2705: added a `select_for_update()` clause to querysets.Jacob Kaplan-Moss
2011-04-11Fixed incorrect usage of its in query.py docstringAdrian Holovaty
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-03-26Fixed #15647 -- Changed in_bulk() not to type check its input, which now allo...Adrian Holovaty
2011-02-12Fixed #15283 -- Made a minor performance tweak to __iter__. Thanks to lanyjie...Russell Keith-Magee
2011-02-08Fixed #15116 -- Strip ordering clause from in_bulk() queries, since ordering ...Russell Keith-Magee
2011-01-16Fixed #14707 -- Relax the protections on aggregate naming collisions when a V...Russell Keith-Magee
2011-01-10Fix wrong attribute name in [15156]. Thanks to Alex Gaynor for spotting this.Andrew Godwin
2011-01-08Fixed #9029 -- Allow use of fieldname_id with get_or_create. Thanks to aaron ...Andrew Godwin
2010-12-03Fixed #14700 -- ensure that a raw query is only executed once per iteration.Alex Gaynor
2010-11-26Fixed a suite of errors in the ORM -- a) fixed calling values_list().values_l...Alex Gaynor
2010-11-24Fixed #14700 - speed up RawQuerySet iterator.Luke Plant
2010-11-23Fixed #14697 - speeded up model instance creation by moving work outside of l...Luke Plant
2010-11-21Fixed #5768 -- Added support for ManyToManyFields and reverse relations in va...Carl Meyer
2010-11-18Fixed pk uniqueness validation for new objects created outside of a ModelForm...Carl Meyer
2010-11-09Fixed #7539, #13067 -- Added on_delete argument to ForeignKey to control casc...Carl Meyer
2010-11-04Fixed #13935, added support for using QuerySet.dates across related fields. ...Alex Gaynor
2010-10-29Remove several uses of the deprecated dict.has_key in favor of the in operato...Alex Gaynor
2010-10-10Refs #11256 -- Extended the annotation field name conflict check to cover m2m...Carl Meyer
2010-10-09Added sanity-checking of annotation alias names.Carl Meyer
2010-10-09Fixed #14366 -- Model.objects.none().values() now correctly returns a QuerySe...Alex Gaynor
2010-09-26Fixed #14280 -- Fixed duplicate import of deepcopy. Thanks, Carl Meyer.Jannis Leidel
2010-08-07Fixed #13552 -- Added a 'using' parameter to database signals. Thanks to gman...Russell Keith-Magee
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