From e4274e3da1160997bc78c09ca8f634e04d7438d2 Mon Sep 17 00:00:00 2001 From: Садовский Николай Date: Sat, 6 Jul 2013 09:38:33 +0700 Subject: [1.6.x] Fixed #20707 -- Added explicit quota assignment to Oracle test user To enable testing on Oracle 12c --- django/db/backends/oracle/creation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/db/backends/oracle/creation.py b/django/db/backends/oracle/creation.py index c7808e4849..2f2f3912db 100644 --- a/django/db/backends/oracle/creation.py +++ b/django/db/backends/oracle/creation.py @@ -172,6 +172,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""", ] -- cgit v1.3