diff options
| author | Садовский Николай <sns1081@gmail.com> | 2013-07-06 09:38:33 +0700 |
|---|---|---|
| committer | Shai Berger <shai@platonix.com> | 2013-09-09 16:25:13 +0300 |
| commit | 1185370c2c7e66428c45c69e960d10198e17e367 (patch) | |
| tree | a79aa7cf82ae64e4b568b0f4ac65dbbfb6c17879 | |
| parent | 5e1c7d4cf6019772d861ea8408b60377b5352e71 (diff) | |
Fixed #20707 -- Added explicit quota assignment to Oracle test user
To enable testing on Oracle 12c
| -rw-r--r-- | django/db/backends/oracle/creation.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/backends/oracle/creation.py b/django/db/backends/oracle/creation.py index b1a8782aa9..fc9a0d034f 100644 --- a/django/db/backends/oracle/creation.py +++ b/django/db/backends/oracle/creation.py @@ -181,6 +181,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""", ] |
