Re: doc: pg_trgm missing description for GUC "pg_trgm.strict_word_similarity_threshold"
Masahiko Sawada <sawada.mshk@gmail.com>
From: Masahiko Sawada <sawada.mshk@gmail.com>
To: Ian Barwick <ian.barwick@2ndquadrant.com>
Cc: "pgsql-hackers@postgresql.org" <pgsql-hackers@postgresql.org>, Alexander Korotkov <a.korotkov@postgrespro.ru>
Date: 2019-06-07T06:44:14Z
Lists: pgsql-hackers
On Thu, Jun 6, 2019 at 10:19 PM Ian Barwick <ian.barwick@2ndquadrant.com> wrote:
>
> Hi
>
> Commit be8a7a68662 added custom GUC "pg_trgm.strict_word_similarity_threshold",
> but omitted to document this in the section "GUC Parameters";
Indeed.
BTW while looking GUC variables defined in trgm_op.c the operators in
each short description seems not correct; there is an extra percent
sign. Should we also fix them?
postgres(1:43133)=# select name, short_desc from pg_settings where
name like 'pg_trgm%';
name | short_desc
------------------------------------------+-----------------------------------------------
pg_trgm.similarity_threshold | Sets the threshold used by
the %% operator.
pg_trgm.strict_word_similarity_threshold | Sets the threshold used by
the <<%% operator.
pg_trgm.word_similarity_threshold | Sets the threshold used by
the <%% operator.
Regards,
--
Masahiko Sawada
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center
Commits
-
Remove pg_trgm.strict_word_similarity_threshold doc from 9.6 and 10
- 0a8cd4c29624 10.11 landed
- b18aaad90fb1 9.6.16 landed
-
Add docs of missing GUC to pgtrgm.sgml
- 97c9ea17fbca 9.6.14 landed
- 9ee98cc3fae2 10.9 landed
- 19dc23a5ef75 11.4 landed
- ba3783e0244e 12.0 landed
-
Fix docs indentation in pgtrgm.sgml
- abfbdb25ec2a 9.6.14 landed
- 7c2122f11f0f 10.9 landed
- 76bccb12dbb8 11.4 landed
- 852ddfbbe212 12.0 landed
-
Fix operator naming in pg_trgm GUC option descriptions
- 959792087a10 9.6.14 landed
- 589f91fc312e 10.9 landed
- bc93a5ab4070 11.4 landed
- b6987a885ba9 12.0 landed
-
Add strict_word_similarity to pg_trgm module
- be8a7a686627 11.0 cited