diff options
author | Peter Eisentraut | 2023-03-13 08:04:41 +0000 |
---|---|---|
committer | Peter Eisentraut | 2023-03-13 08:08:58 +0000 |
commit | d72900bdedc60fe20bc50d5d0e7dcb4bc0eb304e (patch) | |
tree | da5f3f7d234b0272ade0ef43e7f5439f07b595be /src/include | |
parent | e0a09d4e354c9636c2b775c6f02e749236c78acf (diff) |
Improve support for UNICODE collation on older ICU
The recently added standard collation UNICODE (0d21d4b9bc) doesn't
give consistent results on some build farm members with old ICU
versions. Apparently, the ICU locale specification 'und' (language
tag style) misbehaves on some older ICU versions. Replacing it with
'' (ICU locale ID style) fixes it at least on some OS versions. Let's
see what the build farm says.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/catalog/catversion.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index 5d1b957ed44..989c3ada381 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -57,6 +57,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 202303101 +#define CATALOG_VERSION_NO 202303131 #endif |