summaryrefslogtreecommitdiff
path: root/docs/ref/models/querysets.txt
AgeCommit message (Expand)Author
2012-11-22[1.5.X] Documented behavior of get_or_create when multiple objects are returned.Tim Graham
2012-11-19[1.5.X] Fixed typo in docs/ref/models/querysets.txtAnton Danilchenko
2012-11-02[1.5.x] Deprecated depth kwarg on select_related.Preston Holmes
2012-10-20Fixed #13869 - Warned that QuerySet.iterator() doesn't affect DB driver cachi...Tim Graham
2012-10-06Fixed #17435 - Clarified that QuerySet.update returns the number of rows matchedTim Graham
2012-10-05Merge pull request #425 from Osmose/queryset_doc_typoPreston Holmes
2012-10-05Fixed typo in queryset docs under update method.Michael Kelly
2012-09-28Fixed #18676 -- Allow fast-path deletion of objectsAnssi Kääriäinen
2012-09-20Fixed #18934 - Removed versionadded/changed annotations for Django 1.3Tim Graham
2012-09-15Clearer wording for defer docsPreston Holmes
2012-09-08Updated print statements to work with py3; thanks Claude Paroz noting this.Tim Graham
2012-09-08Fixed #17156 -- Added documentation examples for exists()Tim Graham
2012-09-08Avoided mixing dates and datetimes in the examples.Aymeric Augustin
2012-09-05Fixed #18904 - Typo in MySQL link; thanks Johie Anderson for the report.Tim Graham
2012-08-12Fixed #18306 -- Made deferred models issue update_fields on saveAndrei Antoukh
2012-07-17Fixed #17788 -- Added batch_size argument to qs.bulk_create()Anssi Kääriäinen
2012-07-07Removed Django 1.0-specific sections.Aymeric Augustin
2012-06-26Fixed #17485 -- Made defer work with select_relatedAnssi Kääriäinen
2012-06-07Removed references to changes made in 1.2.Aymeric Augustin
2012-04-30Replaced print statement by print function (forward compatibility syntax).Claude Paroz
2012-04-09Fixed #17877 -- Ensured that extra WHERE clauses get correctly ANDed when the...Julien Phalip
2012-03-12Edited some docs and docstrings until [17685]Adrian Holovaty
2012-03-04Documented a limit of the SQLite backend, in relation with the bulk_create fu...Aymeric Augustin
2012-02-28Fixed #17668 - prefetch_related does not work in in_bulkLuke Plant
2012-02-21Fixed a few typos in the aggregation functions reference.Aymeric Augustin
2012-01-21Fixed #10139 -- Clarified that slicing an evaluated QuerySet returns a list, ...Aymeric Augustin
2012-01-06Moved misplaced documentation warning note about internal QuerySet query atri...Ramiro Morales
2011-12-30Edited doc changes from [17244]Adrian Holovaty
2011-12-22Added support for modifying the effect of ``DISTINCT`` clauses so theyRamiro Morales
2011-11-24Added warning about the performance of large IN clauses in prefetch_related docsLuke Plant
2011-11-18Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.Aymeric Augustin
2011-10-11Corrected a reST formatting problem in the queryset reference docs.Gabriel Hurley
2011-10-10Removed use of non-standard indentation rules in docs, and the custom transfo...Luke Plant
2011-10-10Fixed a bunch of ReST errors that resulted in interpretation as block quotationsLuke Plant
2011-10-08Fixed some ReST errors in docs.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-09-30Fixed doc references to `django.db.models.query.QuerySet` and converted some ...Jannis Leidel
2011-09-22Added versionadded directive for the `bulk_create` Queryset method introduced...Jannis Leidel
2011-09-09Fixed #7596. Added Model.objects.bulk_create, and make use of it in several ...Alex Gaynor
2011-09-04Converted links to external topics so they use intersphinx extension markup.Ramiro Morales
2011-08-27Extensive copy-editing and cross-referencing in the queryset API docs.Malcolm Tredinnick
2011-08-26Fixed #16712 -- Fixed a small typo in the QuerySet API docs. Thanks to Rupe a...Julien Phalip
2011-08-26Corrected explanation of values() and extra() interaction in querysets.Malcolm Tredinnick
2011-08-26Clarify the documentation around SQLite and case-sensitive string matching.Malcolm Tredinnick
2011-08-26Be very clear about when it's appropriate to use defer() and only().Malcolm Tredinnick
2011-08-06Fixed #16580 - Typo in docs/ref/models/querysets.txtTimo Graham
2011-07-06s/get/filter in new example of how to use queryset update method: update won'...Karen Tracey
2011-07-05Added another bit to the update() queryset docs about avoiding race conditionsAdrian Holovaty
2011-07-05Improved update() docs in querysets.txtAdrian Holovaty