summaryrefslogtreecommitdiff
path: root/django/db/models/sql
AgeCommit message (Expand)Author
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
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-29Switch a datastructure internal to the ORM to be a set, instead of a dictionary.Alex Gaynor
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-09Fixed #17877 -- Ensured that extra WHERE clauses get correctly ANDed when the...Julien Phalip
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-03-13Fixed #10498 (again) -- Made sure the improvements done in r17641 have a smal...Jannis Leidel
2012-02-22Fixed #17728 -- When filtering an annotation, ensured the values used in the ...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
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-12-17Fixed various dodgy behavioursAdrian Holovaty
2011-11-13Fixed #13640: Avoid generating an exception when a model has an attribute nam...Karen Tracey