diff options
author | Bruce Momjian <bruce@momjian.us> | 2010-06-30 02:43:10 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2010-06-30 02:43:10 +0000 |
commit | 67bc0b2b9052f62b78559edf5a10a384ad9ea670 (patch) | |
tree | c3cacd82e338a6de9ab9f1370cb65a46a97a070a /doc/src | |
parent | e1f8d97e49db3cc7bbcd4869213aba6942c38756 (diff) | |
download | postgresql-67bc0b2b9052f62b78559edf5a10a384ad9ea670.tar.gz postgresql-67bc0b2b9052f62b78559edf5a10a384ad9ea670.zip |
Document that /bin/true on Windows is implemented by 'REM'.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/config.sgml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index b498cc2658a..412e535a485 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.287 2010/06/29 22:29:13 momjian Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.288 2010/06/30 02:43:10 momjian Exp $ --> <chapter Id="runtime-config"> <title>Server Configuration</title> @@ -1793,7 +1793,8 @@ SET ENABLE_SEQSCAN TO OFF; disabled, but the server continues to accumulate WAL segment files in the expectation that a command will soon be provided. Setting <varname>archive_command</> to a command that does nothing but - return true, e.g. <literal>/bin/true</>, effectively disables + return true, e.g. <literal>/bin/true</> (<literal>REM</> on + Windows), effectively disables archiving, but also breaks the chain of WAL files needed for archive recovery, so it should only be used in unusual circumstances. </para> |