pgsql: Refactor to introduce pg_locale_deterministic().

From: Jeff Davis <jdavis(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Refactor to introduce pg_locale_deterministic().
Date: 2023-02-23 19:47:55
Message-ID: E1pVHZL-000M6A-1n@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Refactor to introduce pg_locale_deterministic().

Avoids the need of callers to test for NULL, and also avoids the need
to access the pg_locale_t structure directly.

Reviewed-by: Peter Eisentraut, Peter Geoghegan
Discussion: https://postgr.es/m/a581136455c940d7bd0ff482d3a2bd51af25a94f.camel%40j-davis.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/6974a8f7682beeb515b78b34a5253d5f96552f58

Modified Files
--------------
src/backend/access/hash/hashfunc.c | 4 ++--
src/backend/regex/regc_pg_locale.c | 2 +-
src/backend/utils/adt/like.c | 4 ++--
src/backend/utils/adt/pg_locale.c | 9 +++++++++
src/backend/utils/adt/varchar.c | 8 ++++----
src/backend/utils/adt/varlena.c | 14 ++++++--------
src/include/utils/pg_locale.h | 1 +
7 files changed, 25 insertions(+), 17 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tomas Vondra 2023-02-23 20:21:39 pgsql: Add LZ4 compression to pg_dump
Previous Message Jeff Davis 2023-02-23 19:09:10 pgsql: Refactor to add pg_strcoll(), pg_strxfrm(), and variants.