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
/
query.py
Age
Commit message (
Expand
)
Author
2009-01-29
Fixed #7210 -- Added F() expressions to query language. See the documentation...
Russell Keith-Magee
2009-01-24
Refs #10113 -- Modified the generated SQL to remove redundant GROUP BY elemen...
Russell Keith-Magee
2009-01-24
Fixed #10113 -- Ensured that joined fields mentioned in order_by() are includ...
Russell Keith-Magee
2009-01-23
Fixed #10089 -- Corrected handling of aggregates when the query set contains ...
Russell Keith-Magee
2009-01-23
Fixed #10100 -- Corrected handling of the negation required exclude() clauses...
Russell Keith-Magee
2009-01-20
Fixed #10064 -- Corrected handling of aggregate queries that also use select_...
Russell Keith-Magee
2009-01-15
Fixed #3566 -- Added support for aggregation to the ORM. See the documentatio...
Russell Keith-Magee
2009-01-08
Fixed #9985 -- qs.values_list(...).values(...) was constructing incorrect SQL.
Malcolm Tredinnick
2009-01-08
Remove any ordering from a nested select query (in the where-clause).
Malcolm Tredinnick
2009-01-05
Nested query support.
Malcolm Tredinnick
2009-01-05
Reconciling where- and having-clause behaviour.
Malcolm Tredinnick
2008-12-10
If an SQL query doesn't specify any ordering, avoid the implicit sort
Malcolm Tredinnick
2008-12-09
Fixed #9778 -- Added some special casing of the "Join on field 'abc'" error
Malcolm Tredinnick
2008-12-08
This fixes a group of problems in the SQL created by QuerySet.exclude() when
Malcolm Tredinnick
2008-12-07
Fixed #9188 -- Fixed a case where we were generating syntactically invalid SQ...
Malcolm Tredinnick
2008-10-24
Fixed #9307 -- Added the ability to pickle the Query class used by the Oracle
Malcolm Tredinnick
2008-10-24
Fixed #9406 -- Ensure that each database column is only represented once in the
Malcolm Tredinnick
2008-10-08
A queryset that has had ordering removed (order_by()) can have ordering added
Malcolm Tredinnick
2008-10-08
Applying a limit to a queryset that already had an upper limit of 0 wasn't
Malcolm Tredinnick
2008-09-22
Fixed a missing variable initialisation deep in the Query bowels.
Malcolm Tredinnick
2008-09-11
A bug from queryset-refactor days: although the Query class has "group_by" and
Malcolm Tredinnick
2008-09-03
Fixed #8819 -- Don't include two copies of extra-select columns in the query.
Malcolm Tredinnick
2008-09-02
Fixed #8790 -- Multi-branch join trees that shared tables of the same name were
Malcolm Tredinnick
2008-09-02
Fixed #8439 -- Complex combinations of Q-objects (using both conjunctions and
Malcolm Tredinnick
2008-09-02
A typo fix that fortunately wasn't creating invalid SQL, just slightly less
Malcolm Tredinnick
2008-09-02
Get the join promotion code (a bit more) correct when constructing joins for ...
Malcolm Tredinnick
2008-09-01
Replaced exact lookups of the empty string with isnull lookups in Oracle. Fi...
Ian Kelly
2008-09-01
Fixed #7302: Corrected quoting of columns in extra_group_by. Thanks to Ivan S...
Russell Keith-Magee
2008-09-01
Fixed #7512 -- Fixed an oversight when I first fixed ordering on nullable
Malcolm Tredinnick
2008-08-28
Improvements to [8608] to fix an infinite loop (for exclude(generic_relation)).
Malcolm Tredinnick
2008-08-27
Fixed #5937 -- When filtering on generic relations, restrict the target objec...
Malcolm Tredinnick
2008-08-25
Fixed #8106 -- Untangled some problems with complex select_related() queries
Malcolm Tredinnick
2008-08-22
Fixed #8046 -- The first filter() call on a related manager for many-to-many
Malcolm Tredinnick
2008-08-17
Fixed #8039 -- Make sure that extra(tables=...) tables are always included in
Malcolm Tredinnick
2008-08-17
Changed the (internal) way extra(select=.., select_params=...) handling is done
Malcolm Tredinnick
2008-08-06
Major refactoring of django.dispatch with an eye towards speed. The net resul...
Jacob Kaplan-Moss
2008-07-27
Fixed #7886 -- Reordered some code in Query.results_iter() to ensure that all
Malcolm Tredinnick
2008-07-27
Fixed #7872 -- Fixed a missed case of promoting table joins when using
Malcolm Tredinnick
2008-07-22
Fixed #7813 -- Allow pickling of Query classes that use select_related().
Malcolm Tredinnick
2008-07-22
Fixed #7791 -- Fixed a really silly error I introduced in [7926]. :-(
Malcolm Tredinnick
2008-07-22
Fixed #7848 -- Removed a bunch of code that wasn't contributing to society. T...
Adrian Holovaty
2008-07-22
Fixed #7847 -- Removed a whole bunch of unused imports from throughout the co...
Adrian Holovaty
2008-07-15
Fixed #7411 -- worked around some possible transaction conflicts in SQLite.
Malcolm Tredinnick
2008-07-12
Fixed a bozo bug from [7885]. Fixed #7698.
Malcolm Tredinnick
2008-07-11
Removed a FIXME that isn't really a problem any longer.
Malcolm Tredinnick
2008-07-11
Fixed #7698 -- Handle '0' correctly when used as the upper bound of a slice.
Malcolm Tredinnick
2008-07-04
Redo the changes in [7773] in a better way.
Malcolm Tredinnick
2008-07-01
Modified [7760] to not include a "col is not NULL" fragment for non-nullable ...
Malcolm Tredinnick
2008-06-30
Fixed #7314 -- Changed the way extra() bits are handled when QuerySets are me...
Malcolm Tredinnick
2008-06-29
A way better fix for the count() issue in [7787].
Malcolm Tredinnick
[prev]
[next]