From 0eb5cde9da3252fbdbbb59ae6e421ca04814ad3c Mon Sep 17 00:00:00 2001 From: Josh Smeaton Date: Tue, 26 Aug 2014 15:54:37 +1000 Subject: Fixed #21775 -- Allowed customization of datafile for Oracle tablespace --- docs/ref/settings.txt | 74 +++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 72 insertions(+), 2 deletions(-) (limited to 'docs/ref') diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index c1d094b629..5479afe82c 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -741,7 +741,11 @@ Default: ``None`` This is an Oracle-specific setting. The name of the tablespace that will be used when running tests. If not -provided, Django will use ``'test_' + NAME``. +provided, Django will use ``'test_' + USER``. + +.. versionchanged:: 1.8 + + Previously Django used ``'test_' + NAME`` if not provided. .. setting:: TEST_TBLSPACE_TMP @@ -753,7 +757,73 @@ Default: ``None`` This is an Oracle-specific setting. The name of the temporary tablespace that will be used when running tests. If -not provided, Django will use ``'test_' + NAME + '_temp'``. +not provided, Django will use ``'test_' + USER + '_temp'``. + +.. versionchanged:: 1.8 + + Previously Django used ``'test_' + NAME + '_temp'`` if not provided. + +.. setting:: DATAFILE + +DATAFILE +^^^^^^^^ + +.. versionadded:: 1.8 + +Default: ``None`` + +This is an Oracle-specific setting. + +The name of the datafile to use for the TBLSPACE. If not provided, Django will +use ``TBLSPACE + '.dbf'``. + +.. setting:: DATAFILE_TMP + +DATAFILE_TMP +^^^^^^^^^^^^ + +.. versionadded:: 1.8 + +Default: ``None`` + +This is an Oracle-specific setting. + +The name of the datafile to use for the TBLSPACE_TMP. If not provided, Django +will use ``TBLSPACE_TMP + '.dbf'``. + +.. setting:: DATAFILE_MAXSIZE + +DATAFILE_MAXSIZE +^^^^^^^^^^^^^^^^ + +.. versionadded:: 1.8 + +Default: ``'500M'`` + +.. versionchanged:: 1.8 + + The previous value was 200M and was not user customizable. + +This is an Oracle-specific setting. + +The maximum size that the DATAFILE is allowed to grow to. + +.. setting:: DATAFILE_TMP_MAXSIZE + +DATAFILE_TMP_MAXSIZE +^^^^^^^^^^^^^^^^^^^^ + +.. versionadded:: 1.8 + +Default: ``'500M'`` + +.. versionchanged:: 1.8 + + The previous value was 200M and was not user customizable. + +This is an Oracle-specific setting. + +The maximum size that the DATAFILE_TMP is allowed to grow to. .. setting:: OLD_TEST_CHARSET -- cgit v1.3