Django

Code

root/django/trunk/django/db/models/query.py


Mode:

Legend:

Added
Modified
Copied or renamed
Rev Chgset Date Author Log Message
(edit) @9202 [9202] 10/08/08 03:38:33 mtredinnick Fixed #6748 -- When printing the repr() of querysets, don't load or …
(edit) @8807 [8807] 09/01/08 14:35:03 jacob Fixed #8115: avoid a infiniate loop when collecting related objects for …
(edit) @8724 [8724] 08/29/08 17:29:38 mtredinnick Fixed a typo from the refactoring in [8455]. With bonus test, too. Thanks, …
(edit) @8670 [8670] 08/28/08 12:18:05 mtredinnick Changed create() and get_or_create() to force an insert (not update an …
(edit) @8598 [8598] 08/26/08 15:44:20 mtredinnick Fixed #8036 -- Fixed a case when attempting to traverse non-existent …
(edit) @8499 [8499] 08/23/08 13:34:32 mtredinnick Removed a relatively pointless QuerySet? clone introduced in [8472].
(edit) @8472 [8472] 08/22/08 17:00:28 mtredinnick Fixed #8046 -- The first filter() call on a related manager for …
(edit) @8455 [8455] 08/20/08 17:38:15 mtredinnick Made it possible to pickle DateQuerySets?.
(edit) @8398 [8398] 08/15/08 18:29:55 gwilson Fixed #6970 -- Raise the original IntegrityError when all required …
(edit) @8355 [8355] 08/14/08 20:33:18 mboersma Fixed Oracle backend test case failure in modeltests\lookup.
(edit) @8315 [8315] 08/12/08 00:59:43 mtredinnick Added savepoint protection to get_or_create() to avoid problems on …
(edit) @8267 [8267] 08/09/08 12:19:23 mtredinnick Added the ability to force an SQL insert (or force an update) via a …
(edit) @8223 [8223] 08/06/08 10:32:46 jacob Major refactoring of django.dispatch with an eye towards speed. The net …
(edit) @8199 [8199] 08/03/08 12:26:50 gwilson Removed unused warnings import that should have been removed in [8191], …
(edit) @8191 [8191] 08/01/08 23:56:11 gwilson Removed several deprecated features for 1.0 (refs #7830): * "simple" …
(edit) @8128 [8128] 07/27/08 20:32:46 mtredinnick Fixed #7853 -- Fixed another case of deleting inherited models with …
(edit) @8100 [8100] 07/26/08 23:18:52 mtredinnick Fixed #7778 -- Fixed a tricky case of foreign key clearing with …
(edit) @8098 [8098] 07/26/08 20:18:23 mtredinnick Fixed #7530, #7716 -- When using select_related() and encountering a …
(edit) @7938 [7938] 07/16/08 18:17:29 mtredinnick Fixed #7759 -- Fixed QuerySet?.count() when the results cache was only …
(edit) @7912 [7912] 07/12/08 20:22:31 gwilson Re-organized imports, removing a couple that were unused.
(edit) @7911 [7911] 07/12/08 20:17:23 gwilson Added a docstring to CyclicDependency? exception class.
(edit) @7910 [7910] 07/12/08 18:25:22 mtredinnick Fixed #7734 -- Fixed a Python 2.3 compatibility problem.
(edit) @7871 [7871] 07/08/08 16:53:38 gwilson Fixed a couple typos as well as several minor style issues.
(edit) @7782 [7782] 06/29/08 04:40:17 mtredinnick Factored out a semi-complex if-test that was used in two places.
(edit) @7766 [7766] 06/26/08 08:25:59 mtredinnick Fixed #7312 -- Fixed handling of custom Q-like objects in …
(edit) @7765 [7765] 06/26/08 06:42:12 mtredinnick EmptyQuerySet? classes can now be merged with normal querysets.
(edit) @7763 [7763] 06/26/08 02:51:19 mtredinnick Fixed #7105 -- Fixed dates() queries in light of model inheritance.
(edit) @7742 [7742] 06/25/08 21:20:45 mtredinnick Removed the bulk of the sanity checking when merging QuerySets?. It was …
(edit) @7739 [7739] 06/25/08 08:38:06 russellm Fixed #7155 -- Corrected DateQuerySet? to handle nullable fields. Thanks to …
(edit) @7722 [7722] 06/21/08 15:57:05 lukeplant Fixed bug with Model.delete() which did not always delete objects in the …
(edit) @7636 [7636] 06/15/08 01:24:41 russellm Fixed #7256 -- Corrected queryset code to return the correct set of …
(edit) @7601 [7601] 06/09/08 11:17:54 jacob Fixed #7298: prevent update() on sliced QuerySet? since UPDATE doesn't …
(edit) @7504 [7504] 04/28/08 20:19:42 mtredinnick Undo [7474]. I didn't think it through nearly carefully enough. This …
(edit) @7499 [7499] 04/28/08 09:14:41 mtredinnick Added the ability to pickle and unpickle QuerySets? and Query classes.
(edit) @7497 [7497] 04/28/08 07:09:23 mtredinnick ValuesQuerySets? (and subclasses) were inadvertently not caching their …
(edit) @7487 [7487] 04/27/08 19:58:21 adrian Fixed a bug with the new QuerySet? update() method where it wasn't …
(edit) @7477 [7477] 04/26/08 21:50:16 mtredinnick Merged the queryset-refactor branch into trunk. This is a big internal …
(edit) @7289 [7289] 03/18/08 09:08:40 mtredinnick Fixed #6641 -- If we lose a race when creating a new object in …
(edit) @6838 [6838] 12/02/07 12:21:07 mtredinnick Fixed #3511 -- Changed QuerySet?.get() to return a MultipleObjectsReturned?
(edit) @6411 [6411] 09/24/07 13:27:42 jacob Fixed #5559: instances sent via post-save signals no longer have pks of …
(edit) @6198 [6198] 09/14/07 13:26:07 mboersma Fixed #5226. Now we check the Oracle version and give an explicit error …
(edit) @5982 [5982] 08/19/07 22:26:55 adrian Refactored OPERATOR_MAPPING so that it exists as …
(edit) @5977 [5977] 08/19/07 22:03:40 adrian Refactored get_field_cast_sql() to DatabaseOperations?.field_cast_sql(). …
(edit) @5976 [5976] 08/19/07 21:39:05 adrian Refactored get_query_set_class() to DatabaseOperations?.query_set_class(). …
(edit) @5974 [5974] 08/19/07 21:20:33 adrian Implemented BaseDatabaseFeatures? and changed all code to access it -- …
(edit) @5967 [5967] 08/19/07 20:03:33 adrian Refactored quote_name() to DatabaseOperations?.quote_name(). Refs #5106
(edit) @5962 [5962] 08/19/07 19:04:20 adrian Refactored get_random_function_sql() to …
(edit) @5959 [5959] 08/19/07 18:24:59 adrian Refactored get_limit_offset_sql() to …
(edit) @5957 [5957] 08/19/07 18:13:06 adrian Refactored get_fulltext_search_sql() to …
(edit) @5953 [5953] 08/19/07 17:55:05 adrian Refactored get_datetime_cast_sql() to …
(edit) @5952 [5952] 08/19/07 17:47:43 adrian Refactored get_date_trunc_sql() to DatabaseOperations?.date_trunc_sql(). …
(edit) @5951 [5951] 08/19/07 17:40:06 adrian Refactored get_date_extract_sql() to …
(edit) @5943 [5943] 08/19/07 07:37:00 mtredinnick Fixed #5087 -- Fixed support for TextField? filtering with Oracle. Thanks, …
(edit) @5831 [5831] 08/08/07 16:09:55 gwilson Fixed #5115 -- Fixed QuerySet slices to allow longs.
(edit) @5768 [5768] 07/27/07 17:07:42 adrian Fixed bug with using values() and extra(select) in the same QuerySet?, with …
(edit) @5609 [5609] 07/04/07 07:11:04 mtredinnick Merged Unicode branch into trunk (r4952:5608). This should be …
(edit) @5555 [5555] 06/27/07 13:58:10 jacob Fixed #1465: added support for regex lookups. Thanks, Tom Tobin.
(edit) @5519 [5519] 06/23/07 09:16:00 mtredinnick Merged boulder-oracle-sprint branch (r3965:5512) back into trunk. …
(edit) @5514 [5514] 06/22/07 22:18:22 mtredinnick Fixed #4607 -- Tweaked checks for features missing in Python 2.3 to not …
(edit) @5385 [5385] 05/30/07 21:22:41 jacob Fixed #3050: you can now use extra(select=...) with values(). Thanks, …
(edit) @5172 [5172] 05/08/07 05:59:35 mtredinnick Moved generic relations into django.contrib.contenttypes, since it depends …
(edit) @5154 [5154] 05/05/07 23:12:08 adrian Fixed comma splice in error message introduced in [5133]
(edit) @5133 [5133] 04/30/07 22:21:54 mtredinnick Fixed #4130 -- Added more self-explanatory error message when a typo is …
(edit) @4986 [4986] 04/09/07 10:35:19 adrian Negligible space changes to django/db/models/query.py
(edit) @4985 [4985] 04/09/07 08:28:09 russellm Backwards-incompatible change -- Removed LazyDate? helper class. To …
(edit) @4772 [4772] 03/21/07 22:00:12 mtredinnick Fixed #2351 -- Fixed problem with using ".count" attribute of QuerySets?
(edit) @4754 [4754] 03/20/07 06:09:40 russellm Fixed #3738 -- Minor inline documentation fix. Thanks, Simon.
(edit) @4645 [4645] 02/28/07 09:24:05 jacob Added a "depth" argument to select_related() to control how many "levels" …
(edit) @4563 [4563] 02/23/07 17:05:25 jacob Fixed silly typo in [4651].
(edit) @4561 [4561] 02/23/07 14:58:28 jacob Fixed #3541: queryset.count() now respects the queryset cache.
(edit) @4505 [4505] 02/14/07 00:32:32 adrian Changed year lookup to use a BETWEEN SQL statement instead of comparing …
(edit) @4488 [4488] 02/11/07 18:16:17 mtredinnick #fixed #2256 -- Made count() interact with slicing on QuerySets?. Patch …
(edit) @4475 [4475] 02/09/07 23:38:38 adrian Fixed #3463 -- EmptyQuerySet?'s iterator() now returns a generator. Thanks, …
(edit) @4470 [4470] 02/09/07 21:39:56 mtredinnick Fixed #2348 -- Improved error reporting when query filter arguments …
(edit) @4428 [4428] 01/25/07 05:24:17 russellm Fixed #3215, #3081, #2749 -- Fixed problem with mistaken deletion of …
(edit) @4394 [4394] 01/22/07 20:11:08 adrian Fixed #3283 -- Added support for empty QuerySets? via none() method. Thanks …
(edit) @4283 [4283] 01/03/07 22:00:16 russellm Fixed #2473 -- Added special case for 'in=[]' (empty set) queries, …
(edit) @4265 [4265] 12/30/06 00:25:49 adrian Fixed #3191 -- Set 'svn:eol-style native' on the files that didn't have …
(edit) @3902 [3902] 10/13/06 21:48:05 russellm Fixes #2737 -- Added code to allow None as a query value for exact …
(edit) @3826 [3826] 09/25/06 08:49:01 russellm Made pk a generic expansion for the primary key, rather than just an …
(edit) @3400 [3400] 07/20/06 15:13:35 adrian Fixed #2379 -- Fixed 'search' DB lookup parameter, which was broken by …
(edit) @3327 [3327] 07/10/06 23:11:40 adrian Added local 'qn' variable for backend.quote_name in …
(edit) @3326 [3326] 07/10/06 22:35:17 adrian Added local 'qn' variable for backend.quote_name in …
(edit) @3325 [3325] 07/10/06 22:29:12 adrian Removed references to LOOKUP_SEPARATOR in …
(edit) @3324 [3324] 07/10/06 22:27:29 adrian Removed unnecessary 'except: raise' in django.db.models.query.lookup_inner
(edit) @3323 [3323] 07/10/06 22:27:10 adrian Added local 'qn' variable for backend.quote_name in …
(edit) @3322 [3322] 07/10/06 22:21:59 adrian Renamed 'clause' variable to 'lookup_type' in …
(edit) @3317 [3317] 07/10/06 21:32:53 adrian Fixed #1614 -- get_sql(), lookup_inner() and parse_lookup() no longer …
(edit) @3300 [3300] 07/08/06 09:17:45 adrian Made two small changes to comments in django.db.models.query
(edit) @3250 [3250] 06/30/06 22:21:32 adrian Formatting fix for [3248]
(edit) @3248 [3248] 06/30/06 22:14:33 russellm Fixes #2271 -- Added code to imply __exact on any query argument that …
(edit) @3246 [3246] 06/30/06 20:14:41 russellm Fixed #2217 -- Allowed raw objects to be used in exact and in query …
(edit) @3217 [3217] 06/27/06 15:36:25 jacob Added Manager.create() method to create and save an object in a …
(edit) @3113 [3113] 06/08/06 00:00:13 adrian Fixed #2109 -- Convert old-style classes to new-style classes throughout …
(edit) @3092 [3092] 06/06/06 19:09:29 adrian Added Manager.get_or_create()
(edit) @3073 [3073] 06/03/06 18:28:24 adrian Fixed #593 -- Added 'search' DB-API lookup type, which does full-text …
(edit) @3044 [3044] 05/31/06 23:47:56 adrian Fixed #1454 -- Improved DB API quote_only_if_word() so that it doesn't …
(edit) @3019 [3019] 05/31/06 09:52:33 adrian Fixed #2038 -- QuerySet?._combine now combines where clause. Thanks, …
(edit) @2997 [2997] 05/26/06 18:41:43 lukeplant Fixed bug with QuerySet?.exclude() failing to do negations on Q objects, …
(edit) @2992 [2992] 05/26/06 13:41:03 lukeplant Made negative indexing on QuerySet? instances raise an assertion error …
Note: See TracRevisionLog for help on using the revision log.