From: Sandro Santilli Date: Wed, 6 Nov 2013 14:56:35 +0000 (+0000) Subject: Drop another duplicated signature X-Git-Tag: 2.2.0rc1~1302 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d1b2bc141c76d4ac03c1f4a8140cc359d5c9e9ad;p=postgis Drop another duplicated signature git-svn-id: http://svn.osgeo.org/postgis/trunk@12099 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in index 53250b6f3..a6eb88db2 100644 --- a/postgis/postgis.sql.in +++ b/postgis/postgis.sql.in @@ -4579,16 +4579,6 @@ CREATE OR REPLACE FUNCTION ST_distance_sphere(geom1 geometry, geom2 geometry) LANGUAGE 'sql' IMMUTABLE STRICT COST 300; --- Availability: 1.2.2 -CREATE OR REPLACE FUNCTION ST_distance_sphere(geom1 geometry, geom2 geometry) - RETURNS FLOAT8 - AS $$ - select st_distance(geography($1),geography($2),false) - $$ - LANGUAGE 'sql' IMMUTABLE STRICT - COST 300; - - --------------------------------------------------------------- -- GEOMETRY_COLUMNS view support functions ---------------------------------------------------------------