mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #28260 -- Allowed customizing the test tablespace initial and autoextend size on Oracle.
Thanks Tim Graham for the review.
This commit is contained in:
parent
8149bd00d8
commit
516b7664dc
4 changed files with 84 additions and 8 deletions
|
@ -911,6 +911,58 @@ This is an Oracle-specific setting.
|
|||
|
||||
The maximum size that the DATAFILE_TMP is allowed to grow to.
|
||||
|
||||
.. setting:: DATAFILE_SIZE
|
||||
|
||||
``DATAFILE_SIZE``
|
||||
^^^^^^^^^^^^^^^^^
|
||||
|
||||
.. versionadded:: 2.0
|
||||
|
||||
Default: ``'50M'``
|
||||
|
||||
This is an Oracle-specific setting.
|
||||
|
||||
The initial size of the DATAFILE.
|
||||
|
||||
.. setting:: DATAFILE_TMP_SIZE
|
||||
|
||||
``DATAFILE_TMP_SIZE``
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
.. versionadded:: 2.0
|
||||
|
||||
Default: ``'50M'``
|
||||
|
||||
This is an Oracle-specific setting.
|
||||
|
||||
The initial size of the DATAFILE_TMP.
|
||||
|
||||
.. setting:: DATAFILE_EXTSIZE
|
||||
|
||||
``DATAFILE_EXTSIZE``
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
.. versionadded:: 2.0
|
||||
|
||||
Default: ``'25M'``
|
||||
|
||||
This is an Oracle-specific setting.
|
||||
|
||||
The amount by which the DATAFILE is extended when more space is required.
|
||||
|
||||
.. setting:: DATAFILE_TMP_EXTSIZE
|
||||
|
||||
``DATAFILE_TMP_EXTSIZE``
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
.. versionadded:: 2.0
|
||||
|
||||
Default: ``'25M'``
|
||||
|
||||
This is an Oracle-specific setting.
|
||||
|
||||
The amount by which the DATAFILE_TMP is extended when more space is required.
|
||||
|
||||
.. setting:: DATA_UPLOAD_MAX_MEMORY_SIZE
|
||||
|
||||
DATA_UPLOAD_MAX_MEMORY_SIZE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue