diff options
| author | Boulder Sprinters <boulder-sprinters@djangoproject.com> | 2006-11-05 00:59:57 +0000 |
|---|---|---|
| committer | Boulder Sprinters <boulder-sprinters@djangoproject.com> | 2006-11-05 00:59:57 +0000 |
| commit | 6267678653bb9f81bdc2705fc33192291dc50fea (patch) | |
| tree | 4bf925527f32f781ae8c79ae4d298dc6f280bbb5 | |
| parent | e72e04010253b7b24c241cdca35afaf5cb026279 (diff) | |
[boulder-oracle-sprint] fixed bug to drop tablespace <user>_temp
git-svn-id: http://code.djangoproject.com/svn/django/branches/boulder-oracle-sprint@4014 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/db/backends/oracle/creation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/oracle/creation.py b/django/db/backends/oracle/creation.py index 9d363b1d47..689ce3b244 100644 --- a/django/db/backends/oracle/creation.py +++ b/django/db/backends/oracle/creation.py @@ -105,7 +105,7 @@ def _destroy_test_db(cursor, dbname, verbosity): statements = [ """drop user %(user)s cascade""", """drop tablespace %(user)s including contents and datafiles cascade constraints""", - """drop tablespace %(user)s including contents and datafiles cascade constraints""", + """drop tablespace %(user)s_temp including contents and datafiles cascade constraints""", ] _execute_statements(cursor, statements, dbname, verbosity) |
