Commit 991f5237 authored by Shai Berger's avatar Shai Berger
Browse files

[1.7.x] Fixed #23969: Made Oracle default test-tablespace larger.

It seems our test suite has grown...
Refs #21775
parent 284496e6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -216,11 +216,11 @@ class DatabaseCreation(BaseDatabaseCreation):
        statements = [
            """CREATE TABLESPACE %(tblspace)s
               DATAFILE '%(tblspace)s.dbf' SIZE 20M
               REUSE AUTOEXTEND ON NEXT 10M MAXSIZE 200M
               REUSE AUTOEXTEND ON NEXT 10M MAXSIZE 300M
            """,
            """CREATE TEMPORARY TABLESPACE %(tblspace_temp)s
               TEMPFILE '%(tblspace_temp)s.dbf' SIZE 20M
               REUSE AUTOEXTEND ON NEXT 10M MAXSIZE 100M
               REUSE AUTOEXTEND ON NEXT 10M MAXSIZE 150M
            """,
        ]
        self._execute_statements(cursor, statements, parameters, verbosity)