Fixed #12759 -- Fixed the iterator method on psycopg1 cursors, which was preventing the raw_query tests from passing.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12845 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2010-03-25 12:36:21 +00:00
parent 962defed0a
commit 04aa8a007e
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ class UnicodeCursorWrapper(object):
return getattr(self.cursor, attr)
def __iter__(self):
return iter(self.cursor)
return iter(self.cursor.fetchall())
class DatabaseFeatures(BaseDatabaseFeatures):
uses_savepoints = True