From: Regina Obe Date: Tue, 24 Sep 2013 21:34:31 +0000 (+0000) Subject: #2396 liblwgeom tests fail on big-endian architectures (oops copied the wrong tickets... X-Git-Tag: 2.2.0rc1~1360 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bc48445185dc7d1ba0413dbd9ec461a59c9ced77;p=postgis #2396 liblwgeom tests fail on big-endian architectures (oops copied the wrong tickets file) (4th time) git-svn-id: http://svn.osgeo.org/postgis/trunk@11976 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/regress/regress.sql b/regress/regress.sql index 0f427dcbd..fbefa1386 100644 --- a/regress/regress.sql +++ b/regress/regress.sql @@ -239,9 +239,9 @@ select '145', ST_AsEWKT(ST_force_3dz('POINTM(1 2 3)')); select '146', ST_AsEWKT(ST_force_4d('POINTM(1 2 3)')); select '147', ST_AsEWKT(ST_force_4d('POINT(1 2 3)')); -select '148', ST_AsText(ST_segmentize('LINESTRING(0 0, 10 0)', 5)); +select '148', ST_AsText(ST_segmentize('LINESTRING(0 0, 10 0)'::geometry, 5)); -select '149', ST_AsText(ST_segmentize('GEOMETRYCOLLECTION EMPTY', 0.5)); +select '149', ST_AsText(ST_segmentize('GEOMETRYCOLLECTION EMPTY'::geometry, 0.5)); select '150', ST_AsEWKT(ST_force_collection(ST_setsrid('POLYGON((0 0, 1 0, 1 1, 0 1, 0 0))'::geometry, 6)));