8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71a05b2 commit 228b048Copy full SHA for 228b048
doc/src/sgml/config.sgml
@@ -1249,7 +1249,7 @@ include_dir 'conf.d'
1249
than the client's.
1250
This parameter can only be set in the <filename>postgresql.conf</filename>
1251
file or on the server command line.
1252
- The default is <literal>true</literal>.
+ The default is <literal>on</literal>.
1253
</para>
1254
1255
<para>
@@ -1404,12 +1404,12 @@ include_dir 'conf.d'
1404
This parameter determines whether the passphrase command set by
1405
<varname>ssl_passphrase_command</varname> will also be called during a
1406
configuration reload if a key file needs a passphrase. If this
1407
- parameter is false (the default), then
+ parameter is off (the default), then
1408
<varname>ssl_passphrase_command</varname> will be ignored during a
1409
reload and the SSL configuration will not be reloaded if a passphrase
1410
is needed. That setting is appropriate for a command that requires a
1411
TTY for prompting, which might not be available when the server is
1412
- running. Setting this parameter to true might be appropriate if the
+ running. Setting this parameter to on might be appropriate if the
1413
passphrase is obtained from a file, for example.
1414
1415
@@ -3330,14 +3330,14 @@ restore_command = 'copy "C:\\server\\archivedir\\%f" "%p"' # Windows
3330
<listitem>
3331
3332
Specifies whether to stop just after the specified recovery target
3333
- (<literal>true</literal>), or just before the recovery target
3334
- (<literal>false</literal>).
+ (<literal>on</literal>), or just before the recovery target
+ (<literal>off</literal>).
3335
Applies when <xref linkend="guc-recovery-target-lsn"/>,
3336
<xref linkend="guc-recovery-target-time"/>, or
3337
<xref linkend="guc-recovery-target-xid"/> is specified.
3338
This setting controls whether transactions
3339
having exactly the target WAL location (LSN), commit time, or transaction ID, respectively, will
3340
- be included in the recovery. Default is <literal>true</literal>.
+ be included in the recovery. Default is <literal>on</literal>.
3341
3342
</listitem>
3343
</varlistentry>
@@ -8675,8 +8675,8 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
8675
</term>
8676
8677
8678
- If true, any error will terminate the current session. By default,
8679
- this is set to false, so that only FATAL errors will terminate the
+ If on, any error will terminate the current session. By default,
+ this is set to off, so that only FATAL errors will terminate the
8680
session.
8681
8682
@@ -8690,9 +8690,9 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
8690
8691
8692
8693
- When set to true, which is the default, <productname>PostgreSQL</productname>
+ When set to on, which is the default, <productname>PostgreSQL</productname>
8694
will automatically reinitialize after a backend crash. Leaving this
8695
- value set to true is normally the best way to maximize the availability
+ value set to on is normally the best way to maximize the availability
8696
of the database. However, in some circumstances, such as when
8697
<productname>PostgreSQL</productname> is being invoked by clusterware, it may be
8698
useful to disable the restart so that the clusterware can gain
@@ -8709,7 +8709,7 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
8709
8710
8711
8712
- When set to false, which is the default, <productname>PostgreSQL</productname>
+ When set to off, which is the default, <productname>PostgreSQL</productname>
8713
will raise a PANIC-level error on failure to flush modified data files
8714
to the filesystem. This causes the database server to crash.
8715
@@ -8724,9 +8724,9 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
8724
faulty hardware.
8725
8726
8727
- If set to true, <productname>PostgreSQL</productname> will instead
+ If set to on, <productname>PostgreSQL</productname> will instead
8728
report an error but continue to run so that the data flushing
8729
- operation can be retried in a later checkpoint. Only set it to true
+ operation can be retried in a later checkpoint. Only set it to on
8730
after investigating the operating system's treatment of buffered data
8731
in case of write-back failure.
8732