index
:
chango.git
devmain
fix-31295
initial-branch
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
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
2008-06-29
Fixed #7323 -- Fixed a count() edge-case.
Malcolm Tredinnick
2008-06-29
Fixed #7371 -- Fixed an edge case when ordering on related models.
Malcolm Tredinnick
2008-06-29
Factored out a semi-complex if-test that was used in two places.
Malcolm Tredinnick
2008-06-29
Fixed #7246 -- Pull in the all the necessary data when using select_related()...
Malcolm Tredinnick
2008-06-29
Fixed handling of multiple fields in a model pointing to the same related model.
Malcolm Tredinnick
2008-06-27
Reorganised the internals of the Where node a bit to fix some copying problems.
Malcolm Tredinnick
2008-06-26
Fixed #7181 -- when ordering by a potentially NULL field, use a left-outer join
Malcolm Tredinnick
2008-06-26
Fixed #7076 -- Include NULL values when excluding non-NULL items.
Malcolm Tredinnick
2008-06-26
Fixed a problem when constructing complex select_related() calls.
Malcolm Tredinnick
2008-06-26
Fixed a problem with values() and values_list() queries and nullable joins.
Malcolm Tredinnick
2008-06-08
Fixed #7369: fixed a corner-case involving select_related() following non-nul...
Jacob Kaplan-Moss
2008-04-28
Changed Query.get_columns() to quote the 'AS' column names in an extra_select...
Adrian Holovaty
2008-04-28
Added the ability to pickle and unpickle QuerySets and Query classes.
Malcolm Tredinnick
2008-04-28
Fixed #7096 -- The simplifications in [7461] weren't complete. They broke
Malcolm Tredinnick
2008-04-27
Merged the queryset-refactor branch into trunk.
Malcolm Tredinnick