summaryrefslogtreecommitdiff
path: root/django/db/models/query.py
AgeCommit message (Expand)Author
2014-02-02Ensure cursors are closed when no longer needed.Michael Manfre
2014-02-02Made SQLCompiler.execute_sql(result_type) more explicit.Michael Manfre
2013-12-14Fixed E127 pep8 warnings.Loic Bistuer
2013-12-06Fixed #21566 -- Fixed AttributeError when using bulk_create with ForeignObject.Roger Hu
2013-11-28Fixed E125 pep8 warningsChristopher Medrela
2013-11-27Added a bulk option to RelatedManager remove() and clear() methodsLoic Bistuer
2013-11-27Used simpler queries for m2m clearing when possible.Anssi Kääriäinen
2013-11-15Fixed the use of the -ise suffix, where -ize is preferedAlex Gaynor
2013-11-07Fixed #17001 -- Custom querysets for prefetch_related.Loic Bistuer
2013-11-03Fixed all E226 violationsAlex Gaynor
2013-11-02Fixed all E261 warningscoagulant
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-10-21Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol
2013-10-01OrderedDict creation avoidance for .values() queriesAnssi Kääriäinen
2013-09-30Fixed #21134 -- Prevented queries in broken transactions.Aymeric Augustin
2013-09-30Fixed #13724: Corrected routing of write queries involving managers.Russell Keith-Magee
2013-09-08Removed an unused local varAlex Gaynor
2013-08-30Fixed #20989 -- Removed useless explicit list comprehensions.Simon Charette
2013-08-29Fixed #20989 -- Removed explicit list comprehension inside dict() and tuple()Tim Graham
2013-08-21Fixed a regression with get_or_create and virtual fields.Tim Graham
2013-08-19Fixed #12886 -- aggregation over sliced querysetAnssi Kääriäinen
2013-08-06Fixed #19918 -- Modified select_for_update to run on the write database.Alex Cucu
2013-07-31Fixed #20826 -- Moved Manager.raw() and Manager._insert() to the QuerySet class.Loic Bistuer
2013-07-31Fixed #15624 -- Made sure aggregations are present in SELECTFlorian Hahn
2013-07-26Fixed #20625 -- Chainable Manager/QuerySet methods.Loic Bistuer
2013-07-23Fixed test failures introduced in e716518ad29898fb25c820023aaf2fdd1c9eb4afTim Graham
2013-07-23Fixed #20761 -- Fixed DatabaseError handling in get_or_create and update_or_c...Loic Bistuer
2013-07-23Fixed #20782 -- qs.values().aggregate() failureAnssi Kääriäinen
2013-07-12Fixed #20429 -- Added QuerySet.update_or_createKarol Sikora
2013-07-08Fixed #6785 -- Made QuerySet.get() fetch a limited number of rows.Tim Graham
2013-07-08A large number of stylistic cleanups across django/db/Alex Gaynor
2013-07-08Removed some logic that wasn't needed following removal of some deprecated code.Alex Gaynor
2013-06-28Removed 'depth' .select_related() argument as per deprecation TL.Ramiro Morales
2013-06-28Support 'pyformat' style parameters in raw queries, Refs #10070Shai Berger
2013-05-30Fixed #16856 - Added a way to clear select_related.Tim Graham
2013-05-27Fixed #16137 - Removed kwargs requirement for QuerySet.get_or_createTim Graham
2013-05-26Replaced `and...or...` constructs with PEP 308 conditional expressions.Ramiro Morales
2013-05-24Optimisation in prefetch_related_objectsLuke Plant
2013-05-24Fixed #19607 - prefetch_related crashLuke Plant
2013-05-22Fixed #20463 -- Made get_or_create more robust.Aymeric Augustin
2013-05-21Fixed #18702 -- Removed chunked reads from QuerySet iterationAnssi Kääriäinen
2013-05-21Fixed #19326 -- Added first() and last() methods to QuerySetSelwin Ong
2013-05-20Fixed #20278 -- ensured .get() exceptions do not recurse infinitelyAnssi Kääriäinen
2013-05-15Fixed #20413 - Respect Query.get_meta()Mike Fogel
2013-04-25Removed an errant ipdb import from commit 9777442Adrian Holovaty
2013-04-18Use `LOOKUP_SEP` in `get_or_create`.Simon Charette
2013-03-24Fixed #19385 again, now with real code changesAnssi Kääriäinen
2013-03-20Revert "Fixed 19895 -- Made second iteration over invalid queryset raise an e...Claude Paroz
2013-03-11Used commit_on_success_unless_managed to make ORM operations atomic.Aymeric Augustin
2013-03-11Deprecated transaction.is_managed().Aymeric Augustin