From: Peter Eisentraut Date: Mon, 27 Jun 2022 07:06:44 +0000 (+0200) Subject: pg_upgrade: Fix version comparison for global ICU support X-Git-Tag: REL_15_BETA2~3 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=fa06a34d14ea053e1e405a6ab2a1c3f1631c3a5e;p=postgresql.git pg_upgrade: Fix version comparison for global ICU support Reported-by: Justin Pryzby Discussion: https://www.postgresql.org/message-id/20220625151930.GH22452@telsasoft.com --- diff --git a/src/bin/pg_upgrade/info.c b/src/bin/pg_upgrade/info.c index 5c3968e0ea3..36b0670df66 100644 --- a/src/bin/pg_upgrade/info.c +++ b/src/bin/pg_upgrade/info.c @@ -319,7 +319,7 @@ get_db_infos(ClusterInfo *cluster) snprintf(query, sizeof(query), "SELECT d.oid, d.datname, d.encoding, d.datcollate, d.datctype, "); - if (GET_MAJOR_VERSION(old_cluster.major_version) <= 1500) + if (GET_MAJOR_VERSION(old_cluster.major_version) < 1500) snprintf(query + strlen(query), sizeof(query) - strlen(query), "'c' AS datlocprovider, NULL AS daticulocale, "); else