mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
629b3af27d
This isn't fully tested as yet, in particular I'm not sure that the "foo--unpackaged--1.0.sql" scripts are OK. But it's time to get some buildfarm cycles on it. sepgsql is not converted to an extension, mainly because it seems to require a very nonstandard installation process. Dimitri Fontaine and Tom Lane
14 lines
799 B
SQL
14 lines
799 B
SQL
/* contrib/earthdistance/earthdistance--unpackaged--1.0.sql */
|
|
|
|
ALTER EXTENSION earthdistance ADD function earth();
|
|
ALTER EXTENSION earthdistance ADD type earth;
|
|
ALTER EXTENSION earthdistance ADD function sec_to_gc(double precision);
|
|
ALTER EXTENSION earthdistance ADD function gc_to_sec(double precision);
|
|
ALTER EXTENSION earthdistance ADD function ll_to_earth(double precision,double precision);
|
|
ALTER EXTENSION earthdistance ADD function latitude(earth);
|
|
ALTER EXTENSION earthdistance ADD function longitude(earth);
|
|
ALTER EXTENSION earthdistance ADD function earth_distance(earth,earth);
|
|
ALTER EXTENSION earthdistance ADD function earth_box(earth,double precision);
|
|
ALTER EXTENSION earthdistance ADD function geo_distance(point,point);
|
|
ALTER EXTENSION earthdistance ADD operator <@>(point,point);
|