summaryrefslogtreecommitdiff
path: root/django/db/models/sql
AgeCommit message (Expand)Author
2015-06-23[1.8.x] Renamed RemovedInDjango20Warning to RemovedInDjango110Warning.Tim Graham
2015-06-05[1.8.x] Fixed #24833 -- Fixed Case expressions with exclude().Andriy Sokolovskiy
2015-05-25[1.8.x] Fixed #24835 -- Fixed QuerySet.exists() after an annotation with Count()Paweł Marczewski
2015-05-20[1.8.x] Fixed #24705 -- Fixed negated Q objects in expressions.Anssi Kääriäinen
2015-05-11[1.8.x] Fixed #24748 -- Fixed incorrect GROUP BY on MySQL in some queriesAnssi Kääriäinen
2015-04-28[1.8.x] Fixed #24719 -- Restored the ability to use interators as queryset re...Aric Coady
2015-04-16[1.8.x] Fixed #24605 -- Fixed incorrect reference to alias in subquery.Anssi Kääriäinen
2015-04-16[1.8.x] Fixed #24615 -- ordering by expression not part of SELECTAnssi Kääriäinen
2015-04-13[1.8.x] Fixed #24611 -- Fixed update() crash with related UUID pk object.Jay Wineinger
2015-03-09[1.8.x] Fixed #24171 -- Fixed failure with complex aggregate query and expres...Anssi Kääriäinen
2015-02-20[1.8.x] Update converters to take a consistent set of parameters.Marc Tamlyn
2015-02-20[1.8.x] Fixed #24343 -- Ensure db converters are used for foreign keys.Marc Tamlyn
2015-02-09[1.8.x] Sorted imports with isort; refs #23860.Tim Graham
2015-02-01[1.8.x] Removed query.alias_diff()Tim Graham
2015-02-01[1.8.x] Removed Query.raise_field_error()Tim Graham
2015-01-30[1.8.x] Fixed #14483 -- Allowed using subqueries with GIS lookupsClaude Paroz
2015-01-30[1.8.x] Fixed #24164 -- Fixed Oracle GIS limited aggregation test failure.Tim Graham
2015-01-27[1.8.x] Fixed #24154 -- Backends can now check support for expressionsJosh Smeaton
2015-01-20[1.8.x] Fixed a query failure on Python 3.5; refs #23763.Tim Graham
2015-01-19[1.8.x] Fixed #24174 -- Fixed extra order by descendingJosh Smeaton
2015-01-15Replaced inner functions by class methods.Simon Charette
2015-01-12Fixed #24031 -- Added CASE expressions to the ORM.Michał Modzelewski
2015-01-13Fixed #24060 -- Added OrderBy ExpressionsJosh Smeaton
2015-01-08Fixed #24020 -- Refactored SQL compiler to use expressionsAnssi Kääriäinen
2015-01-06Fixed #12663 -- Formalized the Model._meta API for retrieving fields.Daniel Pyrathon
2015-01-02Fixed #9104 -- Moved FieldDoesNotExist to core.exceptionsDaniel Pyrathon
2014-12-31Fixed #23758 -- Allowed more than 5 levels of subqueriesPiotr Pawlaczek
2014-12-24Fixed #10414 -- Made select_related() fail on invalid field names.Niclas Olofsson
2014-12-23Fixed #21414 -- Removed RelatedObject and deprecated Field.related.Anssi Kääriäinen
2014-12-18Refs #24020 -- return expressions from get_group_by_cols()Anssi Kääriäinen
2014-12-13Fixed #23812 -- Changed django.utils.six.moves.xrange imports to rangeMichael Hall
2014-12-08Fixed #23968 -- Replaced list comprehension with generators and dict comprehe...Jon Dufresne
2014-11-28Fixed #23853 -- Added Join class to replace JoinInfoAnssi Kääriäinen
2014-11-27Fixed #23877 -- aggregation's subquery missed target colAnssi Kääriäinen
2014-11-27Fixed #23875 -- cleaned up query.get_count()Anssi Kääriäinen
2014-11-26Fixed #23867 -- removed DateQuerySet hacksAnssi Kääriäinen
2014-11-20Fixed #23605 -- Fixed nested subquery regressionAnssi Kääriäinen
2014-11-20Fixed #23876 -- Removed dead code in SQLAggregateCompiler.Carl Meyer
2014-11-18Deprecated calling a SQLCompiler instance.Carl Meyer
2014-11-17Moved bilateral transform fetching to models.lookupsAnssi Kääriäinen
2014-11-16Renamed qn to compilerJosh Smeaton
2014-11-15Fixed #14030 -- Allowed annotations to accept all expressionsJosh Smeaton
2014-11-12Removed extra enumerate() from Query.setup_joins()Anssi Kääriäinen
2014-11-12Improved Query.names_to_path docstringAnssi Kääriäinen
2014-11-11Simplified Query.build_lookup()Anssi Kääriäinen
2014-10-28Fixed #23721 -- check_related_objects without calling __iter__Collin Anderson
2014-10-28Fixed #23493 -- Added bilateral attribute to TransformThomas Chaumeny
2014-10-21Fixed #23396 -- Ensured ValueQuerySets are not checked by check_related_objects.Gabe Jackson
2014-09-29Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.Thomas Chaumeny
2014-09-26Fixed #23460 -- Added literal `%s` support to extra() QuerySets.Matt Robenolt