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
/
constants.py
Age
Commit message (
Expand
)
Author
2025-01-03
Fixed #35918 -- Added support for execute_sql to directly return row counts.
Raphael Gaschignard
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2020-04-06
Fixed #31426 -- Added proper field validation to QuerySet.order_by().
Simon Charette
2019-10-29
Fixed #30899 -- Lazily compiled import time regular expressions.
Hasan Ramezani
2017-11-18
Fixed #26184 -- Allowed using any lookups in ModelAdmin.search_fields.
Krzysztof Nazarewski
2015-01-08
Fixed #24020 -- Refactored SQL compiler to use expressions
Anssi Kääriäinen
2014-11-28
Fixed #23853 -- Added Join class to replace JoinInfo
Anssi Kääriäinen
2014-09-29
Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.
Thomas Chaumeny
2014-02-02
Made SQLCompiler.execute_sql(result_type) more explicit.
Michael Manfre
2013-03-24
Fixed #19385 again, now with real code changes
Anssi Kääriäinen
2013-02-16
Fixed #17260 -- Added time zone aware aggregation and lookups.
Aymeric Augustin
2012-12-30
Moved join path generation to Field
Anssi Kääriäinen
2012-12-20
Fixed #19500 -- Solved a regression in join reuse
Anssi Kääriäinen
2012-12-16
Fixed #10790 -- Refactored sql.Query.setup_joins()
Anssi Kääriäinen
2012-10-31
Removed dupe_avoidance from sql/query and sql/compiler.py
Anssi Kääriäinen
2012-10-27
Fixed #19190 -- Refactored Query select clause attributes
Anssi Kääriäinen
2012-09-08
Internal refactoring; moving LOOKUP_SEP up one level.
Malcolm Tredinnick
2012-08-26
Code comment fix.
Mitar
2012-04-29
Switch a datastructure internal to the ORM to be a set, instead of a dictionary.
Alex Gaynor
2012-04-29
Fixed #17644 -- Changed Query.alias_map to use namedtuples
Adrian Holovaty
2009-02-08
Fixed #7672 -- Added a 'week_day' lookup type. Many thanks to Ross Poulton fo...
Karen Tracey
2008-09-02
Fixed #8439 -- Complex combinations of Q-objects (using both conjunctions and
Malcolm Tredinnick
2008-04-28
Fixed #7098 -- Old-style related-model order_by() syntax was being incorrectly
Malcolm Tredinnick
2008-04-27
Merged the queryset-refactor branch into trunk.
Malcolm Tredinnick