From 4b641b78fa1e9cf774d1c0339ef07a854c35e011 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Tue, 28 Feb 2012 09:50:18 +0000 Subject: [PATCH] Fixed #17786 -- Exception when running the tests under Oracle, during the destruction of the test database. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17599 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/backends/oracle/creation.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/django/db/backends/oracle/creation.py b/django/db/backends/oracle/creation.py index 44f8d914fa..c6b04da57f 100644 --- a/django/db/backends/oracle/creation.py +++ b/django/db/backends/oracle/creation.py @@ -40,8 +40,12 @@ class DatabaseCreation(BaseDatabaseCreation): 'URLField': 'VARCHAR2(%(max_length)s)', } + # This dictionary stores the original values of user and passwd, which are + # changed during the tests. It's stored at the class level because the + # test database is created and destroyed by different connections (#17786). + remember = {} + def __init__(self, connection): - self.remember = {} super(DatabaseCreation, self).__init__(connection) def _create_test_db(self, verbosity=1, autoclobber=False):