diff options
author | Thomas Munro <tmunro@postgresql.org> | 2024-08-19 21:21:03 +1200 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2024-08-19 22:21:59 +1200 |
commit | c1bb534bae431f4bbc50abf471507457e1b24efc (patch) | |
tree | e8a92e5c52d1f62ee2c4836498ab2c11153c8a37 /src | |
parent | 4247575c637b4d049346b96514ac9ca3363276d5 (diff) | |
download | postgresql-c1bb534bae431f4bbc50abf471507457e1b24efc.tar.gz postgresql-c1bb534bae431f4bbc50abf471507457e1b24efc.zip |
Fix harmless LC_COLLATE[_MASK] confusion.
Commit ca051d8b101 called newlocale(LC_COLLATE, ...) instead of
newlocale(LC_COLLATE_MASK, ...), in code reached only on FreeBSD. They
have the same value on that OS, explaining why it worked. Fix.
Back-patch to 14, where ca051d8b101 landed.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/adt/pg_locale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/pg_locale.c b/src/backend/utils/adt/pg_locale.c index 3c8fbe63a61..8f841c1d192 100644 --- a/src/backend/utils/adt/pg_locale.c +++ b/src/backend/utils/adt/pg_locale.c @@ -1722,7 +1722,7 @@ get_collation_actual_version(char collprovider, const char *collcollate) locale_t loc; /* Look up FreeBSD collation version. */ - loc = newlocale(LC_COLLATE, collcollate, NULL); + loc = newlocale(LC_COLLATE_MASK, collcollate, NULL); if (loc) { collversion = |