aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2012-08-03 15:15:27 -0400
committerBruce Momjian <bruce@momjian.us>2012-08-03 15:15:27 -0400
commit9fb5952cdf8870b430456b0674d64d6df622ee7c (patch)
treea6911fccde1ffdea090babaf74900b06a797c96d /doc/src
parent7b8c798362a4141904f690375ede8a5bb9138623 (diff)
downloadpostgresql-9fb5952cdf8870b430456b0674d64d6df622ee7c.tar.gz
postgresql-9fb5952cdf8870b430456b0674d64d6df622ee7c.zip
Document that trying to exceed temp_file_limit causes a query cancel.
Backpatch to 9.2.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/config.sgml3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index 3a0b16dec0a..43556a13662 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -1115,7 +1115,8 @@ SET ENABLE_SEQSCAN TO OFF;
<para>
Specifies the maximum amount of disk space that a session can use
for temporary files, such as sort and hash temporary files, or the
- storage file for a held cursor.
+ storage file for a held cursor. A transaction attempting to exceed
+ this limit will be cancelled.
The value is specified in kilobytes, and <literal>-1</> (the
default) means no limit.
Only superusers can change this setting.