BUG #15530: unable restore index on function from earthdistancecontrib - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #15530: unable restore index on function from earthdistancecontrib
Date
Msg-id 15530-3dc5f66205393dc0@postgresql.org
Whole thread Raw
Responses Re: BUG #15530: unable restore index on function from earthdistancecontrib  (Sergei Kornilov <sk@zsrv.org>)
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      15530
Logged by:          Sergei Kornilov
Email address:      sk@zsrv.org
PostgreSQL version: 11.1
Operating system:   Linux Debian
Description:

Hello

We have some immutable language SQL functions in earthdistance contrib
module. So we can build indexes on this functions. But it is unable to
restore such indexes from dump due search_path restrictions in pg_dump.

Simple reproducer is:

SELECT pg_catalog.set_config('search_path', '', false);

CREATE EXTENSION IF NOT EXISTS cube WITH SCHEMA public;
CREATE EXTENSION IF NOT EXISTS earthdistance WITH SCHEMA public;

CREATE TABLE public.points (
    id integer NOT NULL,
    name character varying(255) NOT NULL,
    lng double precision NOT NULL,
    lat double precision NOT NULL
);

CREATE INDEX points_coordinates ON public.points USING gist
(public.ll_to_earth(lat, lng));

With error on last line:
> ERROR:  type "earth" does not exist
> LINE 1: ...ians($1))*sin(radians($2))),earth()*sin(radians($1)))::earth
>                                                                  ^
> QUERY:  SELECT

cube(cube(cube(earth()*cos(radians($1))*cos(radians($2))),earth()*cos(radians($1))*sin(radians($2))),earth()*sin(radians($1)))::earth
> CONTEXT:  SQL function "ll_to_earth" during inlining

Seems to be broken in all supported versions. I checked on fresh HEAD, 11.1
and 10.6.
How can we fix this? Extension is marked as relocatable

regards, Sergei


pgsql-bugs by date:

Previous
From: PG Bug reporting form
Date:
Subject: BUG #15529: interval max value '178000000 years' in doc is not exact.It should 178956970.
Next
From: PG Bug reporting form
Date:
Subject: BUG #15531: python-sqlobject shipped with EPEL 7 not compatible withPostgreSQL 9.6.11