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