summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2007-01-09 21:31:17 +0000
committerBruce Momjian <bruce@momjian.us>2007-01-09 21:31:17 +0000
commitbe8a4318815640ff57afc775f118367c9a1241a8 (patch)
treeb3340d1b7d871383c9b3bd68f6fcb8d3dc33d84f /doc/src
parent1e0bf9041ebb5cf80e83c48fd06214c5d6e22c17 (diff)
Add GUC log_temp_files to log the use of temporary files.
Bill Moran
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/config.sgml19
1 files changed, 18 insertions, 1 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index 7c02d90f2e8..068a85f27bd 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.99 2006/12/12 21:30:33 momjian Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.100 2007/01/09 21:31:14 momjian Exp $ -->
<chapter Id="runtime-config">
<title>Server Configuration</title>
@@ -2920,6 +2920,23 @@ SELECT * FROM parent WHERE key = 2400;
</listitem>
</varlistentry>
+ <varlistentry id="guc-log-temp-files" xreflabel="log_temp_files">
+ <term><varname>log_temp_files</varname> (<type>integer</type>)</term>
+ <indexterm>
+ <primary><varname>log_temp_files</> configuration parameter</primary>
+ </indexterm>
+ <listitem>
+ <para>
+ Controls whether temporary files are logged when deleted.
+ A value of zero logs all temporary files, and positive
+ values log only files whose size is equal or greater than
+ the specified number of bytes. Temporary files can be
+ created for sorts, hashes, and temporary results. The
+ default is <literal>-1</> (off).
+ </para>
+ </listitem>
+ </varlistentry>
+
</variablelist>
</sect2>
</sect1>