summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-08-20 01:14:03 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-08-20 01:14:03 +0000
commitba49e7be08e340db9c0e570619388e9e2ea69509 (patch)
tree95687697dd8d5f73c6c57561478e2bd629e5b15b /django/db/backends/postgresql
parent1b4cfd4fea151da70a77c9ca6197276110aa8c31 (diff)
Removed backend.dictfetchmany(), as it wasn't being used anywhere
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5969 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/backends/postgresql')
-rw-r--r--django/db/backends/postgresql/base.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/django/db/backends/postgresql/base.py b/django/db/backends/postgresql/base.py
index 43f06f83fe..9420909d5a 100644
--- a/django/db/backends/postgresql/base.py
+++ b/django/db/backends/postgresql/base.py
@@ -200,10 +200,6 @@ supports_constraints = True
supports_tablespaces = False
uses_case_insensitive_names = False
-def dictfetchmany(cursor, number):
- "Returns a certain number of rows from a cursor as a dict"
- return cursor.dictfetchmany(number)
-
def dictfetchall(cursor):
"Returns all rows from a cursor as a dict"
return cursor.dictfetchall()