~ubuntu-branches/ubuntu/hardy/postgresql-8.4/hardy-backports

« back to all changes in this revision

Viewing changes to contrib/earthdistance/uninstall_earthdistance.sql

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-03-20 12:00:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090320120013-hogj7egc5mjncc5g
Tags: upstream-8.4~0cvs20090328
ImportĀ upstreamĀ versionĀ 8.4~0cvs20090328

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $PostgreSQL$ */
 
2
 
 
3
-- Adjust this setting to control where the objects get dropped.
 
4
SET search_path = public;
 
5
 
 
6
DROP OPERATOR <@> (point, point);
 
7
 
 
8
DROP FUNCTION geo_distance (point, point);
 
9
 
 
10
DROP FUNCTION earth_box(earth, float8);
 
11
 
 
12
DROP FUNCTION earth_distance(earth, earth);
 
13
 
 
14
DROP FUNCTION longitude(earth);
 
15
 
 
16
DROP FUNCTION latitude(earth);
 
17
 
 
18
DROP FUNCTION ll_to_earth(float8, float8);
 
19
 
 
20
DROP FUNCTION gc_to_sec(float8);
 
21
 
 
22
DROP FUNCTION sec_to_gc(float8);
 
23
 
 
24
DROP DOMAIN earth;
 
25
 
 
26
DROP FUNCTION earth();