diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2020-11-16 15:16:39 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2020-11-16 15:16:39 -0500 |
commit | 53c7b4f6221be2800ba49840ce29cb1b5c0b1ab7 (patch) | |
tree | 371a31d1bc85e6898983e3455e149b6bfc21c566 /src/backend | |
parent | b7fc2593233f5bd1e651852c6d7780cef561a797 (diff) | |
download | postgresql-53c7b4f6221be2800ba49840ce29cb1b5c0b1ab7.tar.gz postgresql-53c7b4f6221be2800ba49840ce29cb1b5c0b1ab7.zip |
Use "true" not "TRUE" in one ICU function call.
This was evidently missed in commit 6337865f3, which generally did
s/TRUE/true/ everywhere. It escaped notice up to now because ICU
versions before ICU 68 provided definitions of "TRUE" and "FALSE"
regardless. With ICU 68, it fails to compile.
Per report from Condor. Back-patch to v11 where 6337865f3 came in.
(I've not tested v10, where this call originated, but I imagine
it's fine since we defined TRUE in c.h back then.)
Discussion: https://postgr.es/m/7a6f3336165bfe3ca66abcda7966f9d0@stz-bg.com
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/commands/collationcmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/collationcmds.c b/src/backend/commands/collationcmds.c index 9f6582c530c..8640afbff39 100644 --- a/src/backend/commands/collationcmds.c +++ b/src/backend/commands/collationcmds.c @@ -464,7 +464,7 @@ get_icu_language_tag(const char *localename) UErrorCode status; status = U_ZERO_ERROR; - uloc_toLanguageTag(localename, buf, sizeof(buf), TRUE, &status); + uloc_toLanguageTag(localename, buf, sizeof(buf), true, &status); if (U_FAILURE(status)) ereport(ERROR, (errmsg("could not convert locale name \"%s\" to language tag: %s", |