1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-18 05:01:01 +03:00

Clarify a #define introduced in 8d299052fe.

The value is the same, but use the right symbol for clarity.
This commit is contained in:
Jeff Davis
2025-12-16 12:48:53 -08:00
parent 84d5efa7e3
commit 24bf379cb1

View File

@@ -38,7 +38,7 @@
* https://www.unicode.org/versions/Unicode16.0.0/core-spec/chapter-5/#G29675 * https://www.unicode.org/versions/Unicode16.0.0/core-spec/chapter-5/#G29675
*/ */
#define UNICODE_CASEMAP_LEN 3 #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 */ /* GUC settings */
extern PGDLLIMPORT char *locale_messages; extern PGDLLIMPORT char *locale_messages;