Refs #16614 -- Called _prepare_cursor() on every created cursor.

This commit is contained in:
François Freitag 2017-01-13 22:36:25 -08:00 committed by Tim Graham
parent 1f10c3994c
commit 05bdf4f44d
2 changed files with 3 additions and 4 deletions

View File

@ -228,7 +228,7 @@ class BaseDatabaseWrapper(object):
def _cursor(self, name=None):
self.ensure_connection()
with self.wrap_database_errors:
return self.create_cursor(name)
return self._prepare_cursor(self.create_cursor(name))
def _commit(self):
if self.connection is not None:
@ -251,7 +251,7 @@ class BaseDatabaseWrapper(object):
"""
Creates a cursor, opening a connection if necessary.
"""
return self._prepare_cursor(self._cursor())
return self._cursor()
def commit(self):
"""

View File

@ -223,14 +223,13 @@ class DatabaseWrapper(BaseDatabaseWrapper):
def chunked_cursor(self):
self._named_cursor_idx += 1
db_cursor = self._cursor(
return self._cursor(
name='_django_curs_%d_%d' % (
# Avoid reusing name in other threads
threading.current_thread().ident,
self._named_cursor_idx,
)
)
return self._prepare_cursor(db_cursor)
def _set_autocommit(self, autocommit):
with self.wrap_database_errors: