summaryrefslogtreecommitdiff
path: root/django/db/models/sql/query.py
AgeCommit message (Expand)Author
2012-12-20Fixed #18854 -- Join promotion in disjunction casesAnssi Kääriäinen
2012-12-20Fixed #19500 -- Solved a regression in join reuseAnssi Kääriäinen
2012-12-17Replaced '__' with LOOKUP_SEP in sql/query.pyAnssi Kääriäinen
2012-12-16Fixed #10790 -- Refactored sql.Query.setup_joins()Anssi Kääriäinen
2012-12-16Fixed #18816 -- Removed "trim" argument from add_filter()Anssi Kääriäinen
2012-11-28Fixed #14694 -- Made ``defer()`` work with reverse relationsTai Lee
2012-11-24Updated stale docstring of setup_joinsAnssi Kääriäinen
2012-11-23Fixed #18375 -- Removed dict-ordering dependency for F-expressionsAnssi Kääriäinen
2012-11-13Removed use of SortedDict for query.alias_refcountAnssi Kääriäinen
2012-10-31Removed dupe_avoidance from sql/query and sql/compiler.pyAnssi Kääriäinen
2012-10-27Fixed #19190 -- Refactored Query select clause attributesAnssi Kääriäinen
2012-10-25Fixed regression caused by #19102Anssi Kääriäinen
2012-10-25Fixed #19102 -- Fixed fast-path delete for modified SELECT clause casesAnssi Kääriäinen
2012-10-08Fixed #19087 -- Ensured query's base table is never LOUTER joinedAnssi 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-21Fixed #17886 -- Fixed join promotion in ORed nullable queriesAnssi Kääriäinen
2012-08-12Fixed #18731 -- Cleaned up split_exclude's use of can_reuseAnssi Kääriäinen
2012-08-08remove a bunch of unnescesarry iterkeys() callsAlex Gaynor
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-07-17Switched to use a more idiomatic construct.Alex Gaynor
2012-07-17Fixed #17497 -- Corrected FieldError message in add_fields()Anssi Kääriäinen
2012-06-26Fixed #17485 -- Made defer work with select_relatedAnssi 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-04-29Fixed #17644 -- Changed Query.alias_map to use namedtuplesAdrian Holovaty
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-04-29Removed unused variable from sql/query.pyAnssi Kääriäinen
2012-04-29Prevent Oracle from changing field.null to TrueAnssi Kääriäinen
2012-04-29Simplified QuerySet field.null handlingAnssi Kääriäinen
2012-04-08Fixed #18014 -- Removed rev_join_map from sql/query.py.Anssi Kääriäinen
2012-03-22Used SortedDict instead of dict to avoid random errors that may occur when di...Aymeric Augustin
2012-02-22Fixed #17678 -- Corrected setup of _meta.proxy_for_model and added _meta.conc...Carl Meyer
2012-02-05Fixed #11670 -- Prevented genuine model fields named 'year', 'month', 'gt', '...Julien Phalip
2011-12-22Added support for modifying the effect of ``DISTINCT`` clauses so theyRamiro Morales
2011-12-17Fixed various dodgy behavioursAdrian Holovaty
2011-11-13Fixed #13640: Avoid generating an exception when a model has an attribute nam...Karen Tracey
2011-09-10Remove a bunch of deadcode/dead imports.Alex Gaynor
2011-09-09Fixed #7596. Added Model.objects.bulk_create, and make use of it in several ...Alex Gaynor
2011-08-23Allow "pk" as a field alias in QuerySet.only() calls.Malcolm Tredinnick
2011-08-23Fixed an isnull=False filtering edge-case. Fixes #15316.Malcolm Tredinnick
2011-08-23Added convenience method for viewing Query SQL without params.Malcolm Tredinnick
2011-08-22Fixed #14876 -- Ensure that join promotion works correctly when there are nul...Russell Keith-Magee
2011-06-28Fixed #5535 -- Allow using an explicit foreign key in get() calls. Thanks, Mi...Jannis Leidel
2011-05-21Fixed #14476 -- Fixed resolution of automatically generated annotation names ...Ramiro Morales
2011-05-15Fixed #15790 -- Fixed QuerySet only() and defer() methods behavior with proxy...Ramiro Morales
2011-05-05Fixed #15823 - incorrect join condition when combining Q objectsLuke Plant
2011-04-22Fixed #14729 -- RawQuerySet.__repr__ fails when params passed as list. Thanks...Jannis Leidel