Author: ramiro
Date: 2010-11-05 23:30:17 -0500 (Fri, 05 Nov 2010)
New Revision: 14468

Modified:
   django/trunk/django/db/backends/oracle/creation.py
Log:
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.

Modified: django/trunk/django/db/backends/oracle/creation.py
===================================================================
--- django/trunk/django/db/backends/oracle/creation.py  2010-11-06 03:26:46 UTC 
(rev 14467)
+++ django/trunk/django/db/backends/oracle/creation.py  2010-11-06 04:30:17 UTC 
(rev 14468)
@@ -152,7 +152,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.

Reply via email to