From 9ab7ed9b726a2bb0eee1d89327b9bf7ea75bba38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D0=B0=D0=B4=D0=BE=D0=B2=D1=81=D0=BA=D0=B8=D0=B9=20?= =?UTF-8?q?=D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0=D0=B9?= Date: Sat, 6 Jul 2013 09:38:33 +0700 Subject: [PATCH] [1.4.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 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""", ]