diff options
author | Bruce Momjian <bruce@momjian.us> | 2010-12-24 11:51:51 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2010-12-24 11:51:51 -0500 |
commit | 5000472112da91023bf468e57bb8ce9217426ed7 (patch) | |
tree | 1f2a8604d5f9f5d4056ef83286687b110d23cb9a /src/backend | |
parent | 075354ad1bc0496c30dbd4dafb0f88a4d3e54cbc (diff) | |
download | postgresql-5000472112da91023bf468e57bb8ce9217426ed7.tar.gz postgresql-5000472112da91023bf468e57bb8ce9217426ed7.zip |
Remove quotes from boolean recovery.conf.sample parameters, now that the
quotes are not required. This now matches postgresql.conf's
specification of booleans.
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/access/transam/recovery.conf.sample | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/transam/recovery.conf.sample b/src/backend/access/transam/recovery.conf.sample index d0d57deea01..146ad0394bf 100644 --- a/src/backend/access/transam/recovery.conf.sample +++ b/src/backend/access/transam/recovery.conf.sample @@ -13,7 +13,7 @@ # # This file consists of lines of the form: # -# name = 'value' +# name = value # # Comments are introduced with '#'. # @@ -75,7 +75,7 @@ # #recovery_target_xid = '' # -#recovery_target_inclusive = 'true' +#recovery_target_inclusive = true # # # If you want to recover into a timeline other than the "main line" shown in @@ -93,7 +93,7 @@ # connection settings primary_conninfo, and receives XLOG records # continuously. # -#standby_mode = 'off' +#standby_mode = off # #primary_conninfo = '' # e.g. 'host=localhost port=5432' # |