From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: Introduce t_isalnum() to replace t_isalpha() || t_isdigit() test |
Date: | 2022-10-06 15:18:50 |
Message-ID: | E1ogSe9-001AsS-DB@gemulon.postgresql.org |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Introduce t_isalnum() to replace t_isalpha() || t_isdigit() tests.
ts_locale.c omitted support for "isalnum" tests, perhaps on the
grounds that there were initially no use-cases for that. However,
both ltree and pg_trgm need such tests, and we do also have one
use-case now in the core backend. The workaround of testing
isalpha and isdigit separately seems quite inefficient, especially
when dealing with multibyte characters; so let's fill in the
missing support.
Discussion: https://postgr.es/m/2548310.1664999615@sss.pgh.pa.us
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/ca71131eebba63809ceb86be033a264a5f0a1d79
Modified Files
--------------
contrib/ltree/ltree.h | 2 +-
contrib/pg_trgm/trgm.h | 2 +-
src/backend/tsearch/ts_locale.c | 16 ++++++++++++++++
src/backend/utils/adt/tsquery.c | 2 +-
src/include/tsearch/ts_locale.h | 1 +
5 files changed, 20 insertions(+), 3 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2022-10-06 16:27:44 | pgsql: Take care to de-duplicate entries in standby.c's table of locks. |
Previous Message | Michael Paquier | 2022-10-06 11:26:29 | pgsql: Fix comment in xlogprefetcher.c |