From: | Jeff Davis <jdavis(at)postgresql(dot)org> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: Add pg_iswalpha() and related functions. |
Date: | 2025-10-15 19:59:31 |
Message-ID: | E1v97el-001s3Q-27@gemulon.postgresql.org |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Add pg_iswalpha() and related functions.
Per-character pg_locale_t APIs. Useful for tsearch parsing and
potentially other places.
Significant overlap with the regc_wc_isalpha() and related functions
in regc_pg_locale.c, but this change leaves those intact for
now.
Discussion: https://postgr.es/m/0151ad01239e2cc7b3139644358cf8f7b9622ff7.camel@j-davis.com
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/af164f31b9f5f00561d5831a72ab91cfe091f92e
Modified Files
--------------
src/backend/regex/regc_pg_locale.c | 150 ++--------------------------------
src/backend/utils/adt/pg_locale.c | 124 ++++++++++++++++++++++++++++
src/include/utils/pg_locale.h | 12 +++
src/include/utils/pg_locale_c.h | 160 +++++++++++++++++++++++++++++++++++++
4 files changed, 302 insertions(+), 144 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Nathan Bossart | 2025-10-15 21:33:43 | pgsql: Fix lookup code for REINDEX INDEX. |
Previous Message | Nathan Bossart | 2025-10-15 18:14:22 | pgsql: Fix redefinition of typedef RangeVar. |