From: Olivier Courtin Date: Fri, 10 May 2013 11:43:23 +0000 (+0000) Subject: Change ST_force_sfs to ST_ForceSFS X-Git-Tag: 2.1.0beta2~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c5a8852718687819ffb165b977a19182e9ee2e1;p=postgis Change ST_force_sfs to ST_ForceSFS git-svn-id: http://svn.osgeo.org/postgis/trunk@11403 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/reference_editor.xml b/doc/reference_editor.xml index 2c09d6162..de8cb04ef 100644 --- a/doc/reference_editor.xml +++ b/doc/reference_editor.xml @@ -528,9 +528,9 @@ GEOMETRYCOLLECTION( - + - ST_Force_SFS + ST_ForceSFS Forces the geometries to use SFS 1.1 geometry types only. @@ -538,7 +538,7 @@ GEOMETRYCOLLECTION( - geometry ST_Force_SFS + geometry ST_ForceSFS geometry geomA diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in index 7a0ed1ac3..ffa54fdcc 100644 --- a/postgis/postgis.sql.in +++ b/postgis/postgis.sql.in @@ -1224,7 +1224,7 @@ CREATE OR REPLACE FUNCTION ST_Multi(geometry) LANGUAGE 'c' IMMUTABLE STRICT; -- Availability: 2.1.0 -CREATE OR REPLACE FUNCTION ST_force_sfs(geometry) +CREATE OR REPLACE FUNCTION ST_ForceSFS(geometry) RETURNS geometry AS 'MODULE_PATHNAME', 'LWGEOM_force_sfs' LANGUAGE 'c' IMMUTABLE STRICT;