summaryrefslogtreecommitdiff
path: root/django/db/models/query.py
AgeCommit message (Expand)Author
2007-12-02Fixed #3511 -- Changed QuerySet.get() to return a MultipleObjectsReturned exc...Malcolm Tredinnick
2007-09-24Fixed #5559: instances sent via post-save signals no longer have pks of None....Jacob Kaplan-Moss
2007-09-14Fixed #5226. Now we check the Oracle version and give an explicit Matt Boersma
2007-08-20Refactored OPERATOR_MAPPING so that it exists as django.db.connection.operato...Adrian Holovaty
2007-08-20Refactored get_field_cast_sql() to DatabaseOperations.field_cast_sql(). Refs ...Adrian Holovaty
2007-08-20Refactored get_query_set_class() to DatabaseOperations.query_set_class(). Als...Adrian Holovaty
2007-08-20Implemented BaseDatabaseFeatures and changed all code to access it -- connect...Adrian Holovaty
2007-08-20Refactored quote_name() to DatabaseOperations.quote_name(). Refs #5106Adrian Holovaty
2007-08-20Refactored get_random_function_sql() to DatabaseOperations.random_function_sq...Adrian Holovaty
2007-08-19Refactored get_limit_offset_sql() to DatabaseOperations.limit_offset_sql(). R...Adrian Holovaty
2007-08-19Refactored get_fulltext_search_sql() to DatabaseOperations.fulltext_search_sq...Adrian Holovaty
2007-08-19Refactored get_datetime_cast_sql() to DatabaseOperations.datetime_cast_sql()....Adrian Holovaty
2007-08-19Refactored get_date_trunc_sql() to DatabaseOperations.date_trunc_sql(). Refs ...Adrian Holovaty
2007-08-19Refactored get_date_extract_sql() to DatabaseOperations.date_extract_sql(). R...Adrian Holovaty
2007-08-19Fixed #5087 -- Fixed support for TextField filtering with Oracle. Thanks, Ian...Malcolm Tredinnick
2007-08-08Fixed #5115 -- Fixed `QuerySet` slices to allow longs.Gary Wilson Jr
2007-07-27Fixed bug with using values() and extra(select) in the same QuerySet, with a ...Adrian Holovaty
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-06-27Fixed #1465: added support for regex lookups. Thanks, Tom Tobin.Jacob Kaplan-Moss
2007-06-23Merged boulder-oracle-sprint branch (r3965:5512) back into trunk. AllMalcolm Tredinnick
2007-06-23Fixed #4607 -- Tweaked checks for features missing in Python 2.3 to not assumeMalcolm Tredinnick
2007-05-31Fixed #3050: you can now use extra(select=...) with values(). Thanks, Honza KralJacob Kaplan-Moss
2007-05-08Moved generic relations into django.contrib.contenttypes, since it depends onMalcolm Tredinnick
2007-05-06Fixed comma splice in error message introduced in [5133]Adrian Holovaty
2007-05-01Fixed #4130 -- Added more self-explanatory error message when a typo is made inMalcolm Tredinnick
2007-04-09Negligible space changes to django/db/models/query.pyAdrian Holovaty
2007-04-09Backwards-incompatible change -- Removed LazyDate helper class. To preserve e...Russell Keith-Magee
2007-03-22Fixed #2351 -- Fixed problem with using ".count" attribute of QuerySets inMalcolm Tredinnick
2007-03-20Fixed #3738 -- Minor inline documentation fix. Thanks, Simon.Russell Keith-Magee
2007-02-28Added a "depth" argument to select_related() to control how many "levels" of ...Jacob Kaplan-Moss
2007-02-23Fixed silly typo in [4651].Jacob Kaplan-Moss
2007-02-23Fixed #3541: queryset.count() now respects the queryset cache.Jacob Kaplan-Moss
2007-02-14Changed __year lookup to use a BETWEEN SQL statement instead of comparing the...Adrian Holovaty
2007-02-12#fixed #2256 -- Made count() interact with slicing on QuerySets. Patch fromMalcolm Tredinnick
2007-02-10Fixed #3463 -- EmptyQuerySet's iterator() now returns a generator. Thanks, Ga...Adrian Holovaty
2007-02-10Fixed #2348 -- Improved error reporting when query filter arguments areMalcolm Tredinnick
2007-01-25Fixed #3215, #3081, #2749 -- Fixed problem with mistaken deletion of objects ...Russell Keith-Magee
2007-01-23Fixed #3283 -- Added support for empty QuerySets via none() method. Thanks fo...Adrian Holovaty
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