summaryrefslogtreecommitdiff
path: root/django/db/models/sql/compiler.py
AgeCommit message (Expand)Author
2017-05-27Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne
2017-05-11Fixed #24254 -- Fixed queries using the __in lookup with querysets using dist...Simon Charette
2017-05-11Fixed #28107 -- Disabled grouping of selected primary keys for unmanaged models.Simon Charette
2017-04-10Fixed #26788 -- Fixed QuerySet.update() crash when updating a geometry to ano...Sergey Fedoseev
2017-04-10Used NotSupportedError instead of DatabaseError in SQLCompiler.as_sql().Mariusz Felisiak
2017-04-07Fixed #23147 -- Disabled a limit/offset on a query with select_for_update on ...Mariusz Felisiak
2017-03-29Fixed #25414 -- Fixed QuerySet.annotate() with pk in values() on MySQL.Mariusz Felisiak
2017-02-28Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-25Removed unused variables that are overwritten.Mads Jensen
2017-01-21Refs #23919 -- Removed misc references to Python 2.Tim Graham
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-14Fixed #27718 -- Added QuerySet.union(), intersection(), difference().Florian Apolloner
2017-01-14Refs #16614 -- Prevented database errors from being masked by cursor close.François Freitag
2017-01-11Refs #16614 -- Made QuerySet.iterator() use server-side cursors on PostgreSQL.François Freitag
2016-12-29Removed unused enumerate.Florian Apolloner
2016-12-14Fixed #27594 -- Fixed select_related() with reverse self-referential OneToOne...Daniel Hillier
2016-10-28Fixed #20939 -- Simplified query generation by converting QuerySet to Query.Tim Graham
2016-10-13Removed unused branch in SQLUpdateCompiler.as_sql().Tim Graham
2016-10-13Removed unused EmptyResultSets in SQLCompilers.Tim Graham
2016-10-04Fixed #27193 -- Preserved ordering in select_for_update subqueries.François Freitag
2016-09-27Removed unused branch in SQLCompiler.as_subquery_condition().Tim Graham
2016-09-09Fixed #27062 -- Eased implementing select_for_update() on MSSQL.Mikhail Denisenko
2016-08-08Fixed #26500 -- Added SKIP LOCKED support to select_for_update().Simon Charette
2016-08-08Moved EmpytResultSet to django.core.exceptions.Johannes Dollinger
2016-08-08Fixed #26517 -- Fixed ExpressionWrapper with empty queryset.Johannes Dollinger
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-03-05Refs #19527 -- Fixed SQL compiler regression causing Oracle failure.Tim Graham
2016-03-02Refs #19527 -- Allowed QuerySet.bulk_create() to set the primary key of its o...acrefoot
2016-01-20Fixed #26092 -- Fixed QuerySet.order_by() regression with an M2M through model.Anssi Kääriäinen
2015-12-17Refs #25894 -- Fixed evaluation of zero-length slices of QuerySet.values() on...Sergey Fedoseev
2015-12-15Fixed #25894 -- Fixed evaluation of zero-length slices of QuerySet.values().Sergey Fedoseev
2015-11-17Simplified lists creation in three places.Dmitry Dygalo
2015-10-10Fixed #24687 -- Added select_related() validation for nested non-relational f...Tim Graham
2015-09-23Removed SQLCompiler.__call__() per deprecation timeline.Tim Graham
2015-09-22Fixed #24509 -- Added Expression support to SQLInsertCompilerAlex Hill
2015-09-04Fixed #19263 -- Fixed crash when filtering using __in and an empty QuerySet.Tim Graham
2015-08-20Fixed #24951 -- Fixed AssertionError in delete queries involving a foreign/pr...Tim Graham
2015-08-15Fixed #24986 -- Added support for annotations in DISTINCT queries.Valentina Mukhamedzhanova
2015-07-28Adjusted SQLCompiler.get_order_by()'s docstring return value.risicle
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
2015-05-11Fixed #24748 -- Fixed incorrect GROUP BY on MySQL in some queriesAnssi Kääriäinen
2015-04-20Fixed #24654 -- Based ordering circular references detection on columns.Simon Charette
2015-04-16Fixed #24605 -- Fixed incorrect reference to alias in subquery.Anssi Kääriäinen
2015-04-16Fixed #24615 -- ordering by expression not part of SELECTAnssi Kääriäinen
2015-04-13Fixed #24611 -- Fixed update() crash with related UUID pk object.Jay Wineinger
2015-03-29Fixed #19259 -- Added group by selected primary keys support.Simon Charette
2015-03-25Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen
2015-03-25Removed field.field check in setup_joins()Anssi Kääriäinen