summaryrefslogtreecommitdiff
path: root/django/db/models/sql/compiler.py
AgeCommit message (Expand)Author
2012-12-21[1.5.x] Refactored proxy model skipping in get_default_columns()Anssi Kääriäinen
2012-11-15[1.5.x] Fixed #19058 -- Fixed Oracle GIS crashAnssi Kääriäinen
2012-11-08[1.5.x] Fixed #17144 -- MySQL again groups by PK onlyAnssi Kääriäinen
2012-10-26[1.5.x] Fixed #15040 - Boolean fields return 0 and 1 when loaded through sele...Luke Plant
2012-10-10Fixed #19096 -- Made can_return_id_from_insert more extendableMichael Manfre
2012-09-28Fixed #18676 -- Allow fast-path deletion of objectsAnssi Kääriäinen
2012-09-16Fixed #17485 regression -- only + select_related interactionAnssi Kääriäinen
2012-09-08Internal refactoring; moving LOOKUP_SEP up one level.Malcolm Tredinnick
2012-09-07Cleaned up some small bits of the ORM, including removing an import *.Alex Gaynor
2012-08-25Fixed #16715 -- Fixed join promotion logic for nested nullable FKsAnssi Kääriäinen
2012-08-14[py3] Removed unnecessary calls to .keys()Aymeric Augustin
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-07-22[py3] Switched to Python 3-compatible imports.Aymeric Augustin
2012-06-26Fixed #17485 -- Made defer work with select_relatedAnssi Kääriäinen
2012-05-24Fixed qs.order_by() join promotion for already existing joinsAnssi Kääriäinen
2012-05-22Fixed #18304 -- Optimized save() when update_can_self_select=FalseAnssi Kääriäinen
2012-05-10Replaced foo.next() by next(foo).Claude Paroz
2012-05-09Fix proxy model Query.remove_inherited_models()Anssi Kääriäinen
2012-05-07Imported zip from future_builtins instead of itertools.izip.Claude Paroz
2012-04-29Fixed #17644 -- Changed Query.alias_map to use namedtuplesAdrian Holovaty
2012-02-22Fixed #17678 -- Corrected setup of _meta.proxy_for_model and added _meta.conc...Carl Meyer
2012-01-03Fixed #17429 -- Ensured that `Meta.ordering=None` works the same if it were a...Julien Phalip
2011-12-22Added support for modifying the effect of ``DISTINCT`` clauses so theyRamiro Morales
2011-10-16Fixed #17056 -- Tweaked insert SQL clause generation so a corner case doesn't...Ramiro Morales
2011-09-10Remove a bunch of deadcode/dead imports.Alex Gaynor
2011-09-10Fixed bulk_insertion on databases which don't yet support it. Thanks to Justi...Alex Gaynor
2011-09-09Fixed #7596. Added Model.objects.bulk_create, and make use of it in several ...Alex Gaynor
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-07Fixed #15709 - Duplicated group_by conditionLuke Plant
2011-04-20Fixed #2705: added a `select_for_update()` clause to querysets.Jacob Kaplan-Moss
2011-01-26Fixed #13159 -- properly quote aggregates in order_by.Alex Gaynor
2010-11-26Fixed a suite of errors in the ORM -- a) fixed calling values_list().values_l...Alex Gaynor
2010-11-23Fixed #14697 - speeded up model instance creation by moving work outside of l...Luke Plant
2010-10-13Fixed #12192 -- Don't execute any DB query when the QS slicing being performedRamiro Morales
2010-04-23Fixed #11764 -- Added a missing set of parentheses in a call calculating the ...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-31Fixed #11916 -- Corrected handling of aggregation when there is a subquery pr...Russell Keith-Magee
2010-03-20Fixed #12937 -- Corrected the operation of select_related() when following an...Russell Keith-Magee
2010-03-08Fixed #12240 - select_related doesn't work correctly when mixing nullable and...Luke Plant
2010-02-23Fixed #12855 -- QuerySets with `extra` where parameters now combine correctly...Justin Bronn
2010-01-27Fixed #7270 -- Added the ability to follow reverse OneToOneFields in select_r...Russell Keith-Magee
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee