summaryrefslogtreecommitdiff
path: root/django/db/models/sql
AgeCommit message (Expand)Author
2012-12-30Minor improvement to proxy model handlingAnssi Kääriäinen
2012-12-30Made use of PathInfo.direct flag in trim_joinsAnssi Kääriäinen
2012-12-30Added Query.join_parent_model()Anssi Kääriäinen
2012-12-30Moved join path generation to FieldAnssi Kääriäinen
2012-12-30Made sure join_field is always available in .join()Anssi Kääriäinen
2012-12-20Fixed a regression in distinct_onAnssi Kääriäinen
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-15Fixed #13781 -- Improved select_related in inheritance situationsAnssi Kääriäinen
2012-11-15Fixed #19058 -- Fixed Oracle GIS crashAnssi Kääriäinen
2012-11-13Removed use of SortedDict for query.alias_refcountAnssi Kääriäinen
2012-11-08Fixed #17144 -- MySQL again groups by PK onlyAnssi 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-26Fixed #15040 - Boolean fields return 0 and 1 when loaded through select_relatedLuke Plant
2012-10-25Fixed regression caused by #19102Anssi Kääriäinen
2012-10-25Added docstring to DeleteQuery.delete_qs()Anssi Kääriäinen
2012-10-25Fixed #19102 -- Fixed fast-path delete for modified SELECT clause casesAnssi Kääriäinen
2012-10-10Fixed #19096 -- Made can_return_id_from_insert more extendableMichael Manfre
2012-10-08Fixed #19087 -- Ensured query's base table is never LOUTER joinedAnssi Kääriäinen
2012-09-30Avoided storing ExpressionNodes in dictsAnssi Kääriäinen
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-26Code comment fix.Mitar
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-14[py3] Removed unnecessary calls to .keys()Aymeric Augustin
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-22[py3] Added Python 3 compatibility for xrange.Aymeric Augustin
2012-07-22[py3] Switched to Python 3-compatible imports.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-07-16Fixed #18056 - Cleared aggregations on DateQuery.add_date_selectNuno Maltez
2012-07-03Fixed comment wording in sql/where.pyAnssi Kääriäinen
2012-07-01Fixed a regression introduced in where.as_sql() refactorAnssi Kääriäinen
2012-07-01Refactored the empty/full result logic in WhereNode.as_sql()Anssi Kääriäinen
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-22Replaced 'next' testing by collections.Iterator testing.Claude Paroz