diff options
| author | Ramiro Morales <cramm0@gmail.com> | 2010-11-06 04:32:23 +0000 |
|---|---|---|
| committer | Ramiro Morales <cramm0@gmail.com> | 2010-11-06 04:32:23 +0000 |
| commit | c8c781a9d510def19720aca09b4a6d3cf75853f1 (patch) | |
| tree | 8bf42ef245f42e6390b2ed9453228d4f2e2c7e4c | |
| parent | 80d6495f6e346917347dd1c8ca277cf0fb40165c (diff) | |
[1.2.X] Fixed #14630 -- Increased maximum size of the Oracle tablespace datafile used for tests from 100MB to 200MB.
This allows the execution of the full Django test suite without running out of allocated space.
Backport of [14468] from trunk
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14469 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 e6e242b9f7..d06ea223ca 100644 --- a/django/db/backends/oracle/creation.py +++ b/django/db/backends/oracle/creation.py @@ -156,7 +156,7 @@ class DatabaseCreation(BaseDatabaseCreation): statements = [ """CREATE TABLESPACE %(tblspace)s DATAFILE '%(tblspace)s.dbf' SIZE 20M - REUSE AUTOEXTEND ON NEXT 10M MAXSIZE 100M + REUSE AUTOEXTEND ON NEXT 10M MAXSIZE 200M """, """CREATE TEMPORARY TABLESPACE %(tblspace_temp)s TEMPFILE '%(tblspace_temp)s.dbf' SIZE 20M |
