diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2009-04-06 15:43:00 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2009-04-06 15:43:00 +0000 |
commit | e7c11056df0fb2ca22f8e170ed8101983f38151f (patch) | |
tree | 73a1a9fcf1e969abf4e769e769a3d8186b08673e | |
parent | 25a76c31dec3418975a2b9def7964b9e0fdc6a56 (diff) | |
download | postgresql-e7c11056df0fb2ca22f8e170ed8101983f38151f.tar.gz postgresql-e7c11056df0fb2ca22f8e170ed8101983f38151f.zip |
Document the fact that fuzzystrmatch doesn't work in multibyte encodings.
-rw-r--r-- | doc/src/sgml/fuzzystrmatch.sgml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/src/sgml/fuzzystrmatch.sgml b/doc/src/sgml/fuzzystrmatch.sgml index 62ab943ff7d..0349f12c5f9 100644 --- a/doc/src/sgml/fuzzystrmatch.sgml +++ b/doc/src/sgml/fuzzystrmatch.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/fuzzystrmatch.sgml,v 1.4 2008/04/03 21:13:07 tgl Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/fuzzystrmatch.sgml,v 1.5 2009/04/06 15:43:00 tgl Exp $ --> <sect1 id="fuzzystrmatch"> <title>fuzzystrmatch</title> @@ -12,6 +12,13 @@ functions to determine similarities and distance between strings. </para> + <caution> + <para> + At present, <filename>fuzzystrmatch</> does not work well with + multi-byte encodings (such as UTF-8). + </para> + </caution> + <sect2> <title>Soundex</title> |