diff options
author | Andres Freund <andres@anarazel.de> | 2023-09-25 10:36:04 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2023-09-25 10:36:04 -0700 |
commit | a2c2fbf740fcfdf75b76d589b8e85c1cdf725a46 (patch) | |
tree | 140e7763be233ae712d016322a4e2dbc17fb5080 | |
parent | 036297cf1b8490bb72439d9ab471670598d3ad2f (diff) | |
download | postgresql-a2c2fbf740fcfdf75b76d589b8e85c1cdf725a46.tar.gz postgresql-a2c2fbf740fcfdf75b76d589b8e85c1cdf725a46.zip |
docs: Clarify --with-segsize-blocks documentation
Without the added "relation" it's not immediately clear that the option
relates to the relation segment size and not e.g. the WAL segment size.
The option was added in d3b111e32.
Reported-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://postgr.es/m/837536.1695348498@sss.pgh.pa.us
Backpatch: 16-
-rw-r--r-- | doc/src/sgml/installation.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index ac8eee47c66..f4b1f811899 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -1681,7 +1681,7 @@ build-postgresql: <term><option>--with-segsize-blocks=SEGSIZE_BLOCKS</option></term> <listitem> <para> - Specify the segment size in blocks. If both + Specify the relation segment size in blocks. If both <option>--with-segsize</option> and this option are specified, this option wins. @@ -3178,7 +3178,7 @@ ninja install <term><option>-Dsegsize_blocks=SEGSIZE_BLOCKS</option></term> <listitem> <para> - Specify the segment size in blocks. If both + Specify the relation segment size in blocks. If both <option>-Dsegsize</option> and this option are specified, this option wins. |