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 15:13:18 +0300
commit9ab7ed9b726a2bb0eee1d89327b9bf7ea75bba38 (patch)
tree55fd4faf7c0d6dfc94b2c3fb60160fee8e084a61
parent7826824aef42097e265ad5132bfbff4c64762dd7 (diff)
[1.4.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 9e6133fc64..9d4f9b1a33 100644
--- a/django/db/backends/oracle/creation.py
+++ b/django/db/backends/oracle/creation.py
@@ -167,6 +167,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""",
]