From 24bf379cb15162514b01fc9fd05420a0203b82e9 Mon Sep 17 00:00:00 2001 From: Jeff Davis Date: Tue, 16 Dec 2025 12:48:53 -0800 Subject: [PATCH] Clarify a #define introduced in 8d299052fe. The value is the same, but use the right symbol for clarity. --- src/include/utils/pg_locale.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/utils/pg_locale.h b/src/include/utils/pg_locale.h index a533463d5b7..6cf1985963d 100644 --- a/src/include/utils/pg_locale.h +++ b/src/include/utils/pg_locale.h @@ -38,7 +38,7 @@ * https://www.unicode.org/versions/Unicode16.0.0/core-spec/chapter-5/#G29675 */ #define UNICODE_CASEMAP_LEN 3 -#define UNICODE_CASEMAP_BUFSZ (UNICODE_CASEMAP_LEN * sizeof(char32_t)) +#define UNICODE_CASEMAP_BUFSZ (UNICODE_CASEMAP_LEN * MAX_MULTIBYTE_CHAR_LEN) /* GUC settings */ extern PGDLLIMPORT char *locale_messages; -- 2.39.5