ValuesQuerySets (and subclasses) were inadvertently not caching their results.

Fixed.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@7497 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2008-04-28 12:09:23 +00:00
parent ba010ec1c0
commit db80f57c6e
1 changed files with 0 additions and 3 deletions

View File

@ -497,9 +497,6 @@ class ValuesQuerySet(QuerySet):
# QuerySet.clone() will also set up the _fields attribute with the
# names of the model fields to select.
def __iter__(self):
return self.iterator()
def iterator(self):
self.query.trim_extra_select(self.extra_names)
names = self.query.extra_select.keys() + self.field_names