diff options
author | Michael Paquier <michael@paquier.xyz> | 2018-12-29 08:24:47 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2018-12-29 08:24:47 +0900 |
commit | 6a19384e74a8d8510d06e85b3956136bd30d4733 (patch) | |
tree | 536a954858f3dc6152ef91cb9b64f70cd2b82585 | |
parent | d58e01f8abe2de106516073b39391c466aaab5f6 (diff) | |
download | postgresql-6a19384e74a8d8510d06e85b3956136bd30d4733.tar.gz postgresql-6a19384e74a8d8510d06e85b3956136bd30d4733.zip |
Improve description of DEFAULT_XLOG_SEG_SIZE in pg_config.h
This was incorrectly referring to --walsegsize, and its description is
rewritten in a clearer way.
Author: Ian Barwick, Tom Lane
Reviewed-by: Álvaro Herrera, Michael Paquier
Discussion: https://postgr.es/m/08534fc6-119a-c498-254e-d5acc4e6bf85@2ndquadrant.com
-rw-r--r-- | src/include/pg_config_manual.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/pg_config_manual.h b/src/include/pg_config_manual.h index 14336acb963..9b00faf88a9 100644 --- a/src/include/pg_config_manual.h +++ b/src/include/pg_config_manual.h @@ -14,8 +14,8 @@ */ /* - * This is default value for wal_segment_size to be used at initdb when run - * without --walsegsize option. Must be a valid segment size. + * This is the default value for wal_segment_size to be used when initdb is run + * without the --wal-segsize option. It must be a valid segment size. */ #define DEFAULT_XLOG_SEG_SIZE (16*1024*1024) |