Disable pg_standby -l option because the backend doesn't expect the recovered
[PostgreSQL.git] / contrib / earthdistance / uninstall_earthdistance.sql
blob2250bded0334ce8ed6ce72401eb36b42ba47aafd
1 /* $PostgreSQL$ */
3 -- Adjust this setting to control where the objects get dropped.
4 SET search_path = public;
6 DROP OPERATOR <@> (point, point);
8 DROP FUNCTION geo_distance (point, point);
10 DROP FUNCTION earth_box(earth, float8);
12 DROP FUNCTION earth_distance(earth, earth);
14 DROP FUNCTION longitude(earth);
16 DROP FUNCTION latitude(earth);
18 DROP FUNCTION ll_to_earth(float8, float8);
20 DROP FUNCTION gc_to_sec(float8);
22 DROP FUNCTION sec_to_gc(float8);
24 DROP DOMAIN earth;
26 DROP FUNCTION earth();