diff options
| author | Daniel Gustafsson | 2025-11-12 12:51:53 +0000 |
|---|---|---|
| committer | Daniel Gustafsson | 2025-11-12 12:51:53 +0000 |
| commit | 1aa5a029fcef7f4f971f3a2b686d2d4280ee44c2 (patch) | |
| tree | 28ece877871f2bb1eb518710bb4e24095c667e39 | |
| parent | cb2ef0e92edb9710e599d0a8b1f850fb46859787 (diff) | |
Fix range for commit_siblings in sample conf
The range for commit_siblings was incorrectly listed as starting on 1
instead of 0 in the sample configuration file. Backpatch down to all
supported branches.
Author: Man Zeng <zengman@halodbtech.com>
Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Discussion: https://postgr.es/m/tencent_53B70BA72303AE9C6889E78E@qq.com
Backpatch-through: 14
| -rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 667e0dc40a2..7e8d3294ec3 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -246,7 +246,7 @@ #wal_skip_threshold = 2MB #commit_delay = 0 # range 0-100000, in microseconds -#commit_siblings = 5 # range 1-1000 +#commit_siblings = 5 # range 0-1000 # - Checkpoints - |
