Author: ramiro
Date: 2010-11-05 23:32:23 -0500 (Fri, 05 Nov 2010)
New Revision: 14469
Modified:
django/branches/releases/1.2.X/django/db/backends/oracle/creation.py
Log:
[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
Modified: django/branches/releases/1.2.X/django/db/backends/oracle/creation.py
===================================================================
--- django/branches/releases/1.2.X/django/db/backends/oracle/creation.py
2010-11-06 04:30:17 UTC (rev 14468)
+++ django/branches/releases/1.2.X/django/db/backends/oracle/creation.py
2010-11-06 04:32:23 UTC (rev 14469)
@@ -156,7 +156,7 @@
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
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en.