summaryrefslogtreecommitdiff
path: root/django/db/models/query.py
AgeCommit message (Expand)Author
2007-01-04Fixed #2473 -- Added special case for '__in=[]' (empty set) queries, because ...Russell Keith-Magee
2006-10-14Fixes #2737 -- Added code to allow None as a query value for __exact queries,...Russell Keith-Magee
2006-09-25Made ``pk`` a generic expansion for the primary key, rather than just an expa...Russell Keith-Magee
2006-07-20Fixed #2379 -- Fixed 'search' DB lookup parameter, which was broken by [3248]...Adrian Holovaty
2006-07-11Added local 'qn' variable for backend.quote_name in django.db.models.query.de...Adrian Holovaty
2006-07-11Added local 'qn' variable for backend.quote_name in django.db.models.query.fi...Adrian Holovaty
2006-07-11Removed references to LOOKUP_SEPARATOR in django.db.models.query.lookup_innerAdrian Holovaty
2006-07-11Removed unnecessary 'except: raise' in django.db.models.query.lookup_innerAdrian Holovaty
2006-07-11Added local 'qn' variable for backend.quote_name in django.db.models.query.lo...Adrian Holovaty
2006-07-11Renamed 'clause' variable to 'lookup_type' in django.db.models.query.lookup_i...Adrian Holovaty
2006-07-11Fixed #1614 -- get_sql(), lookup_inner() and parse_lookup() no longer return ...Adrian Holovaty
2006-07-08Made two small changes to comments in django.db.models.queryAdrian Holovaty
2006-07-01Formatting fix for [3248]Adrian Holovaty
2006-07-01Fixes #2271 -- Added code to imply !__exact on any query argument that doesn'...Russell Keith-Magee
2006-07-01Fixed #2217 -- Allowed raw objects to be used in __exact and __in query terms...Russell Keith-Magee
2006-06-27Added {{{Manager.create()}}} method to create and save an object in a single ...Jacob Kaplan-Moss
2006-06-08Fixed #2109 -- Convert old-style classes to new-style classes throughout Djan...Adrian Holovaty
2006-06-07Added Manager.get_or_create()Adrian Holovaty
2006-06-03Fixed #593 -- Added 'search' DB-API lookup type, which does full-text index s...Adrian Holovaty
2006-06-01Fixed #1454 -- Improved DB API quote_only_if_word() so that it doesn't quote ...Adrian Holovaty
2006-05-31Fixed #2038 -- QuerySet._combine now combines where clause. Thanks, graham@da...Adrian Holovaty
2006-05-26Fixed bug with QuerySet.exclude() failing to do negations on Q objects, andLuke Plant
2006-05-26Made negative indexing on QuerySet instances raise an assertion error (previo...Luke Plant
2006-05-23Fixed bug with Meta.ordering being ignored when slicing a single item off a Q...Luke Plant
2006-05-14Fixed #1530 -- make count() respect distinct() on QuerySets. Create someMalcolm Tredinnick
2006-05-06Made QuerySet slicing return IndexError instead of DoesNotExist (and related ...Luke Plant
2006-05-06Fixed #1776 -- Fixed bug in DateQuerySet when the field is null. Thanks, Chri...Adrian Holovaty
2006-05-06Fixed QuerySet __getitem__ corner case so that it throws exceptions consistentlyLuke Plant
2006-05-06Fixed #1579 - added support for 'Q' objects in limit_choices_to.Luke Plant
2006-05-02MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...Adrian Holovaty