From: Regina Obe Date: Sun, 1 Jan 2012 03:28:31 +0000 (+0000) Subject: #1423 -- fix for geography ST_AsGML - take off strictness if we allow null for prefix X-Git-Tag: 2.0.0alpha1~242 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b10a8bc15915c8e2a266a1d44869ef8a8897079c;p=postgis #1423 -- fix for geography ST_AsGML - take off strictness if we allow null for prefix git-svn-id: http://svn.osgeo.org/postgis/trunk@8633 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/geography.sql.in.c b/postgis/geography.sql.in.c index ae7182440..6bffccd92 100644 --- a/postgis/geography.sql.in.c +++ b/postgis/geography.sql.in.c @@ -431,7 +431,7 @@ CREATE OR REPLACE FUNCTION ST_AsGML(geog geography, maxdecimaldigits int4 DEFAUL CREATE OR REPLACE FUNCTION ST_AsGML(version int4, geog geography, maxdecimaldigits int4 DEFAULT 15, options int4 DEFAULT 0, nprefix text DEFAULT null) RETURNS text AS 'SELECT _ST_AsGML($1, $2, $3, $4, $5)' - LANGUAGE 'SQL' IMMUTABLE STRICT; + LANGUAGE 'SQL' IMMUTABLE; -- -- KML OUTPUT