From: Regina Obe Date: Mon, 2 Jan 2012 00:25:46 +0000 (+0000) Subject: #722: regress replace GeomFromText with ST_GeomFromText X-Git-Tag: 2.0.0alpha1~230 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=613f4966ef7c17439f4148e8332fb4d474ae6da6;p=postgis #722: regress replace GeomFromText with ST_GeomFromText git-svn-id: http://svn.osgeo.org/postgis/trunk@8645 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/regress/tickets.sql b/regress/tickets.sql index 87db6dbad..9dbb675aa 100644 --- a/regress/tickets.sql +++ b/regress/tickets.sql @@ -228,7 +228,7 @@ FROM (SELECT ST_GeomFromText('LINESTRING(25 169,89 114,40 70,86 43)') As line1, ST_GeomFromText('LINESTRING(2.99 90.16,71 74,20 140,171 154)') As line2 ) As foo; -- #277 -- -SELECT '#277', ST_AsGML(2, GeomFromText('POINT(1 1e308)')); +SELECT '#277', ST_AsGML(2, ST_GeomFromText('POINT(1 1e308)')); -- #299 -- SELECT '#299', round(ST_Y(geometry(ST_Intersection(ST_GeographyFromText('POINT(1.2456 2)'), ST_GeographyFromText('POINT(1.2456 2)')))));