From: Paul Ramsey Date: Tue, 31 Jan 2012 18:56:57 +0000 (+0000) Subject: Gah, someone else can do this... X-Git-Tag: 2.0.0alpha3~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=14ce05c2e371146d02877286dc97c0d76c5aaf85;p=postgis Gah, someone else can do this... git-svn-id: http://svn.osgeo.org/postgis/trunk@8982 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/postgis.sql.in.c b/postgis/postgis.sql.in.c index 257036dce..01dad6f29 100644 --- a/postgis/postgis.sql.in.c +++ b/postgis/postgis.sql.in.c @@ -3219,6 +3219,12 @@ CREATE OR REPLACE FUNCTION ST_Equals(geom1 geometry, geom2 geometry) AS 'SELECT $1 ~= $2 AND _ST_Equals($1,$2)' LANGUAGE 'SQL' IMMUTABLE; +-- Deprecation in 1.2.3 +-- TODO: drop in 2.0.0 ! +CREATE OR REPLACE FUNCTION Equals(geom1 geometry, geom2 geometry) + RETURNS boolean + AS 'MODULE_PATHNAME','ST_Equals' + LANGUAGE 'C' IMMUTABLE STRICT; ----------------------------------------------------------------------- -- GML & KML INPUT