aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-11-19 02:26:10 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-11-19 02:26:10 +0000
commit3ebb8867aa72eaac7df9d797efe760bdb61c1b56 (patch)
treee1b68536d943cb9aa13ed47677d09318eaf70541
parent7129f26be0586b333a0a3386b3a4661c36148f48 (diff)
downloadpostgresql-3ebb8867aa72eaac7df9d797efe760bdb61c1b56.tar.gz
postgresql-3ebb8867aa72eaac7df9d797efe760bdb61c1b56.zip
Minor improvement in documentation of temp_tablespaces: avoid grammatical
ambiguity and say what the default value is.
-rw-r--r--doc/src/sgml/config.sgml10
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index 73608a55f29..ca770fd3f2b 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.155 2007/11/09 23:52:08 momjian Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.156 2007/11/19 02:26:10 tgl Exp $ -->
<chapter Id="runtime-config">
<title>Server Configuration</title>
@@ -3724,7 +3724,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
member of the list each time a temporary object is to be created;
except that within a transaction, successively created temporary
objects are placed in successive tablespaces from the list.
- If any element of the list is an empty string,
+ If the selected element of the list is an empty string,
<productname>PostgreSQL</> will automatically use the default
tablespace of the current database instead.
</para>
@@ -3740,6 +3740,12 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
</para>
<para>
+ The default value is an empty string, which results in all temporary
+ objects being created in the default tablespace of the current
+ database.
+ </para>
+
+ <para>
See also <xref linkend="guc-default-tablespace">.
</para>
</listitem>