summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorСадовский Николай <sns1081@gmail.com>2013-07-06 09:38:33 +0700
committerShai Berger <shai@platonix.com>2013-09-09 13:07:39 +0300
commitaa50b7e8373031838c4d1d5fa7da809d3c20dc23 (patch)
tree7bf19ee3b3e5b8231d272abd312f0e1ba07966d3
parent9d3a66aa9fd33f68fc22fc1d86b7aaf382018f57 (diff)
[1.5.x] Fixed #20707 -- Added explicit quota assignment to Oracle test user
To enable testing on Oracle 12c
-rw-r--r--django/db/backends/oracle/creation.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/backends/oracle/creation.py b/django/db/backends/oracle/creation.py
index d9bf3dfea2..76d9da25ab 100644
--- a/django/db/backends/oracle/creation.py
+++ b/django/db/backends/oracle/creation.py
@@ -168,6 +168,7 @@ class DatabaseCreation(BaseDatabaseCreation):
IDENTIFIED BY %(password)s
DEFAULT TABLESPACE %(tblspace)s
TEMPORARY TABLESPACE %(tblspace_temp)s
+ QUOTA UNLIMITED ON %(tblspace)s
""",
"""GRANT CONNECT, RESOURCE TO %(user)s""",
]