Re: ICU for global collation

From: Julien Rouhaud <rjuju123(at)gmail(dot)com>
To: Justin Pryzby <pryzby(at)telsasoft(dot)com>
Cc: Peter Eisentraut <peter(dot)eisentraut(at)enterprisedb(dot)com>, pgsql-hackers(at)postgresql(dot)org, Daniel Verite <daniel(at)manitou-mail(dot)org>
Subject: Re: ICU for global collation
Date: 2022-06-26 03:51:24
Message-ID: 20220626035124.t36putp232nfl5im@jrouhaud
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi,

On Sat, Jun 25, 2022 at 10:19:30AM -0500, Justin Pryzby wrote:
> commit f2553d43060edb210b36c63187d52a632448e1d2 says >=1500 in a few places,
> but in pg_upgrade says <=1500, which looks wrong for upgrades from v15.
> I think it should say <= 1400.
>
> On Wed, Feb 02, 2022 at 02:01:23PM +0100, Peter Eisentraut wrote:
> > diff --git a/src/bin/pg_upgrade/info.c b/src/bin/pg_upgrade/info.c
> > index 69ef23119f..2a9ca0e389 100644
> > --- a/src/bin/pg_upgrade/info.c
> > +++ b/src/bin/pg_upgrade/info.c
> > @@ -312,11 +312,20 @@ get_db_infos(ClusterInfo *cluster)
> > i_spclocation;
> > char query[QUERY_ALLOC];
> >
> > snprintf(query, sizeof(query),
> > - "SELECT d.oid, d.datname, d.encoding, d.datcollate, d.datctype, "
> > + "SELECT d.oid, d.datname, d.encoding, d.datcollate, d.datctype, ");
> > + if (GET_MAJOR_VERSION(old_cluster.major_version) <= 1500)
> > + snprintf(query + strlen(query), sizeof(query) - strlen(query),
> > + "'c' AS datcollprovider, NULL AS daticucoll, ");
> > + else
> > + snprintf(query + strlen(query), sizeof(query) - strlen(query),
> > + "datcollprovider, daticucoll, ");
> > + snprintf(query + strlen(query), sizeof(query) - strlen(query),
> > "pg_catalog.pg_tablespace_location(t.oid) AS spclocation "
> > "FROM pg_catalog.pg_database d "
> > " LEFT OUTER JOIN pg_catalog.pg_tablespace t "

Indeed!

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Paquier 2022-06-26 07:20:34 Re: ICU for global collation
Previous Message Andres Freund 2022-06-26 03:00:04 Re: NAMEDATALEN increase because of non-latin languages