PGDOCS - Integer configuration parameters should say "(integer)"

Started by Peter Smithalmost 4 years ago2 messageshackers
Jump to latest
#1Peter Smith
smithpb2250@gmail.com

FYI, I happened to notice in the PG docs there are a few integer
configuration parameters that describe themselves as type "(int)"
instead of "(integer)".

It looked like a small mistake to me; there are only 3 of (int),
versus 148 of (integer).

~~~

doc\src\sgml\auth-delay.sgml:
29 <term>
30: <varname>auth_delay.milliseconds</varname> (<type>int</type>)
31 <indexterm>

doc\src\sgml\config.sgml:
4918 <varlistentry id="guc-max-logical-replication-workers"
xreflabel="max_logical_replication_workers">
4919: <term><varname>max_logical_replication_workers</varname>
(<type>int</type>)
4920 <indexterm>

doc\src\sgml\pgprewarm.sgml:
109 <term>
110: <varname>pg_prewarm.autoprewarm_interval</varname>
(<type>int</type>)
111 <indexterm>

~~~

PSA a small patch to correct those.

------
Kind Regards,
Peter Smith.
Fujitsu Australia

Attachments:

v1-0001-Use-type-integer-instead-of-type-int.patchapplication/octet-stream; name=v1-0001-Use-type-integer-instead-of-type-int.patchDownload+3-4
#2Michael Paquier
michael@paquier.xyz
In reply to: Peter Smith (#1)
Re: PGDOCS - Integer configuration parameters should say "(integer)"

On Thu, Jun 16, 2022 at 07:22:15PM +1000, Peter Smith wrote:

It looked like a small mistake to me; there are only 3 of (int),
versus 148 of (integer).

Grepping around, that's correct. Will fix.
--
Michael