From: | Noah Misch <noah(at)leadboat(dot)com> |
---|---|
To: | Bruce Momjian <bruce(at)momjian(dot)us> |
Cc: | keiko713(at)gmail(dot)com, pgsql-bugs(at)lists(dot)postgresql(dot)org, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: BUG #15112: Unable to run pg_upgrade with earthdistance extension |
Date: | 2018-04-05 06:59:57 |
Message-ID: | 20180405065957.GA2276534@rfd.leadboat.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs pgsql-hackers |
On Mon, Apr 02, 2018 at 04:24:02PM -0400, Bruce Momjian wrote:
> > I am not sure we can fix this without requiring people to drop and
> > recreate such indexes. However, I am even at a loss in how to fix the
> > CREATE FUNCTION to reference a cast in the same schema as the function,
> > in this case 'public'. We can rewrite the cast to not use :: and use a
> > function call with schema qualification. e.g. public.earth(), but how do
> > we know what schema that is in, i.e. what if the extension is loaded
> > into a schema other than public?
The task is to convert it to being a non-relocatable extension that uses
@extschema@, like here:
/docs/devel/static/extend-extensions.html#EXTEND-EXTENSIONS-EXAMPLE
Keiko Oda, you can hack around this by modifying the problematic extension
function in each database:
CREATE OR REPLACE FUNCTION public.ll_to_earth(float8, float8)
RETURNS public.earth
LANGUAGE SQL
IMMUTABLE STRICT
PARALLEL SAFE
AS 'SELECT public.cube(public.cube(public.cube(public.earth()*cos(radians($1))*cos(radians($2))),public.earth()*cos(radians($1))*sin(radians($2))),public.earth()*sin(radians($1)))::public.earth';
There's no need to drop and recreate indexes. However, if the table is small
and nothing depends on the index, that is an easy workaround that one can
employ right now. (Drop before upgrade and re-create after upgrade.)
> > FYI, earthdistance is certainly not the only case of this problem.
True; I've been expecting a report like this for contrib/xml2 especially.
From | Date | Subject | |
---|---|---|---|
Next Message | molofeev | 2018-04-05 07:02:35 | Re: BUG #15142: ERROR: MultiXactId nnnnn has not been created yet -- apparent wraparound in v9.5 |
Previous Message | Michael Paquier | 2018-04-05 06:58:40 | Re: BUG #14999: pg_rewind corrupts control file global/pg_control |
From | Date | Subject | |
---|---|---|---|
Next Message | Craig Ringer | 2018-04-05 07:09:57 | Re: PostgreSQL's handling of fsync() errors is unsafe and risks data loss at least on XFS |
Previous Message | Michael Paquier | 2018-04-05 06:58:40 | Re: BUG #14999: pg_rewind corrupts control file global/pg_control |