summaryrefslogtreecommitdiff
path: root/django/db/models/sql/where.py
AgeCommit message (Expand)Author
2013-11-28Fixed E125 pep8 warningsChristopher Medrela
2013-07-29Removed most of absolute_import importsClaude Paroz
2013-07-14Fixed #20746 -- Removed Python 2.6 specific code/docsTim Graham
2013-07-08A large number of stylistic cleanups across django/db/Alex Gaynor
2013-05-27Fixed #20507 -- SubqueryConstraint alias relabelingAnssi Kääriäinen
2013-05-20Fixed qs.values() regression when used in subqueryAnssi Kääriäinen
2013-05-19Fixed #11442 -- Postgresql backend casts all inet types to textErik Romijn
2013-03-24Fixed Oracle specific failures in multicolumn joinsAnssi Kääriäinen
2013-03-24Fixed #19385 again, now with real code changesAnssi Kääriäinen
2013-03-22Fixed #20094 - Be more careful when checking for IteratorMarc Tamlyn
2013-03-17Fixed #19635 -- Made fields pickleableAnssi Kääriäinen
2013-03-13Refactored qs.add_q() and utils/tree.pyAnssi Kääriäinen
2013-03-12Fixed #19964 -- Removed relabel_aliases from some structsAnssi Kääriäinen
2013-02-24Revert "fixes #19263" - Fails if not SQLiteHonza Kral
2013-02-23fixes #19263Marcin Biernat
2013-02-16Fixed #17260 -- Added time zone aware aggregation and lookups.Aymeric Augustin
2013-02-11Added a check in the creation of IS NULL clauses.Aymeric Augustin
2013-01-08Fixed #16759 -- Remove use of __deepcopy__ in qs.clone()Anssi Kääriäinen
2013-01-06Fixed #19173 -- Made EmptyQuerySet a marker class onlyAnssi Kääriäinen
2012-07-22[py3] Added Python 3 compatibility for xrange.Aymeric Augustin
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-05-22Replaced 'next' testing by collections.Iterator testing.Claude Paroz
2012-04-09Fixed #17877 -- Ensured that extra WHERE clauses get correctly ANDed when the...Julien Phalip
2012-02-22Fixed #17728 -- When filtering an annotation, ensured the values used in the ...Aymeric Augustin
2011-10-17Remove several more relative imports.Alex Gaynor
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2010-09-16Fixed #14244: Allow lists of more than 1000 items to be used with the 'in' lo...Ian Kelly
2010-09-13Fixed #11594 - Inaccurate docstring for WhereNode.add()Luke Plant
2010-04-21Fixed #13328 -- Ensured that querysets on models with callable defaults can b...Russell Keith-Magee
2010-02-23Fixed #12855 -- QuerySets with `extra` where parameters now combine correctly...Justin Bronn
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-03-08Fixed #10432 -- Handle all kinds of iterators in queryset filters.Malcolm Tredinnick
2009-03-02Fixed #10181 -- Handle an EmptyResultSet exception case properly in nested qu...Malcolm Tredinnick
2009-02-23Fixed #10182 -- Corrected realiasing and the process of evaluating values() f...Russell Keith-Magee
2009-02-08Fixed #10160 -- Modified evaluation of F() expressions to protect against pot...Russell Keith-Magee
2009-02-08Fixed #7672 -- Added a 'week_day' lookup type. Many thanks to Ross Poulton fo...Karen Tracey
2009-01-29Fixed #7210 -- Added F() expressions to query language. See the documentation...Russell Keith-Magee
2009-01-08Using querysets as an rvalue in filter() calls was causing an unnecessaryMalcolm Tredinnick
2009-01-05Reconciling where- and having-clause behaviour.Malcolm Tredinnick
2008-07-23Allow for matches against unsaved objects in querysets (which will thereforeMalcolm Tredinnick
2008-07-04Redo the changes in [7773] in a better way.Malcolm Tredinnick
2008-06-27Removed a dead line that was left in [7773] by accident.Malcolm Tredinnick
2008-06-27Reorganised the internals of the Where node a bit to fix some copying problems.Malcolm Tredinnick
2008-06-12Negligible comment typo fixesAdrian Holovaty
2008-04-29Fixed an Oracle error on double negations in where conditions. Fixed #7111Ian Kelly
2008-04-27Merged the queryset-refactor branch into trunk.Malcolm Tredinnick