mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
contrib uninstall scripts
by David Fetter
This commit is contained in:
@ -1,7 +1,8 @@
|
||||
# $PostgreSQL: pgsql/contrib/earthdistance/Makefile,v 1.16 2005/09/27 17:13:02 tgl Exp $
|
||||
# $PostgreSQL: pgsql/contrib/earthdistance/Makefile,v 1.17 2006/02/27 12:54:38 petere Exp $
|
||||
|
||||
MODULES = earthdistance
|
||||
DATA_built = earthdistance.sql
|
||||
DATA = uninstall_earthdistance.sql
|
||||
DOCS = README.earthdistance
|
||||
REGRESS = earthdistance
|
||||
|
||||
|
23
contrib/earthdistance/uninstall_earthdistance.sql
Normal file
23
contrib/earthdistance/uninstall_earthdistance.sql
Normal file
@ -0,0 +1,23 @@
|
||||
SET search_path = public;
|
||||
|
||||
DROP OPERATOR <@> (point, point);
|
||||
|
||||
DROP FUNCTION geo_distance (point, point);
|
||||
|
||||
DROP FUNCTION earth_box(earth, float8);
|
||||
|
||||
DROP FUNCTION earth_distance(earth, earth);
|
||||
|
||||
DROP FUNCTION longitude(earth);
|
||||
|
||||
DROP FUNCTION latitude(earth);
|
||||
|
||||
DROP FUNCTION ll_to_earth(float8, float8);
|
||||
|
||||
DROP FUNCTION gc_to_sec(float8);
|
||||
|
||||
DROP FUNCTION sec_to_gc(float8);
|
||||
|
||||
DROP DOMAIN earth;
|
||||
|
||||
DROP FUNCTION earth();
|
Reference in New Issue
Block a user