summaryrefslogtreecommitdiff
path: root/django/db/models/sql/where.py
AgeCommit message (Expand)Author
2013-03-22[1.5.x] Fixed #20094 - Be more careful when checking for IteratorMarc Tamlyn
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