pgsql: Change wchar2char() and char2wchar() to accept a locale_t.

From: Jeff Davis <jdavis(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Change wchar2char() and char2wchar() to accept a locale_t.
Date: 2025-07-09 15:48:04
Message-ID: E1uZX1g-005RWu-0l@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Change wchar2char() and char2wchar() to accept a locale_t.

These are libc-specific functions, so should require a locale_t rather
than a pg_locale_t (which could use another provider).

Discussion: https://postgr.es/m/a8666c391dfcabe79868d95f7160eac533ace718.camel%40j-davis.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/53cd0b71ee2e99c611a38ce58636a04d5dde4cc1

Modified Files
--------------
src/backend/tsearch/ts_locale.c | 4 ++--
src/backend/tsearch/wparser_def.c | 2 +-
src/backend/utils/adt/pg_locale_libc.c | 24 ++++++++++++------------
src/include/utils/pg_locale.h | 4 ++--
4 files changed, 17 insertions(+), 17 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2025-07-09 15:49:55 Re: pgsql: Fix up misuse of "volatile" in contrib/xml2.
Previous Message Tom Lane 2025-07-09 15:27:00 pgsql: Minor tweaks for pg_test_timing.