diff options
author | Alexander Korotkov <akorotkov@postgresql.org> | 2019-06-10 19:38:13 +0300 |
---|---|---|
committer | Alexander Korotkov <akorotkov@postgresql.org> | 2019-06-10 20:24:00 +0300 |
commit | 9ee98cc3fae297d4468fd970f3d9aa16794210f5 (patch) | |
tree | d71db604a3613bdab63899c765e2d3842ca47b94 | |
parent | 7c2122f11f0fbc740dd08c0bea3ff1dbf07d4007 (diff) |
Add docs of missing GUC to pgtrgm.sgml
be8a7a68 introduced pg_trgm.strict_word_similarity_threshold GUC, but missed
docs for that. This commit fixes that.
Discussion: https://postgr.es/m/fc907f70-448e-fda3-3aa4-209a59597af0%402ndquadrant.com
Author: Ian Barwick
Reviewed-by: Masahiko Sawada, Michael Paquier
Backpatch-through: 9.6
-rw-r--r-- | doc/src/sgml/pgtrgm.sgml | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/doc/src/sgml/pgtrgm.sgml b/doc/src/sgml/pgtrgm.sgml index 44cc1f4c7c5..9f9482ef273 100644 --- a/doc/src/sgml/pgtrgm.sgml +++ b/doc/src/sgml/pgtrgm.sgml @@ -257,12 +257,29 @@ </term> <listitem> <para> - Sets the current word similarity threshold that is used by + Sets the current word similarity threshold that is used by the <literal><%</> and <literal>%></> operators. The threshold must be between 0 and 1 (default is 0.6). </para> </listitem> </varlistentry> + <varlistentry id="guc-pgtrgm-strict-word-similarity-threshold" xreflabel="pg_trgm.strict_word_similarity_threshold"> + <term> + <varname>pg_trgm.strict_word_similarity_threshold</varname> (<type>real</type>) + <indexterm> + <primary> + <varname>pg_trgm.strict_word_similarity_threshold</varname> configuration parameter + </primary> + </indexterm> + </term> + <listitem> + <para> + Sets the current strict word similarity threshold that is used by the + <literal><<%</literal> and <literal>%>></literal> operators. The threshold + must be between 0 and 1 (default is 0.5). + </para> + </listitem> + </varlistentry> </variablelist> </sect2> |