From: MasaoFujii Date: Fri, 24 Mar 2023 11:32:54 +0000 (+0900) Subject: Correct documentation for bigm_similarity to indicate case-sensitivity. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=d0dc347547eaa8a3e930e3f3d77315ec5b738ef5;p=pgbigm%2Fpg_bigm.git Correct documentation for bigm_similarity to indicate case-sensitivity. The previous documentation for bigm_similarity incorrectly stated that it was not case-sensitive. This commit updates the documentation to reflect that bigm_similarity IS case-sensitive. Please note that the Japanese version of the documentation is not updated as it already accurately explains bigm_similarity and its case-sensitivity. Back-patch to pg_bigm 1.1. Reported and suggested by: Vin Yap Discussion: https://github.com/pgbigm/pg_bigm/issues/3 --- diff --git a/html/pg_bigm_en-1-2.html b/html/pg_bigm_en-1-2.html index dd6373e..0f7843c 100644 --- a/html/pg_bigm_en-1-2.html +++ b/html/pg_bigm_en-1-2.html @@ -376,7 +376,7 @@ This is basically the same behavior as pg_trgm's similarity function.

-Note that bigm_similarity is NOT case-sensitive, but pg_trgm's similarity function is case-sensitive. +Note that bigm_similarity IS case-sensitive, but pg_trgm's similarity function is not. For example, the similarity of the strings "ABC" and "abc" is 1 in pg_trgm's similarity function but 0 in bigm_similarity.