From: Sandro Santilli Date: Mon, 4 May 2015 09:57:05 +0000 (+0000) Subject: Make Postgis_Noop call unambiguous to not fail with raster enabled X-Git-Tag: 2.2.0rc1~529 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b2bbf7f63ce1a5dc8c40ebaeab681b36ab72acf0;p=postgis Make Postgis_Noop call unambiguous to not fail with raster enabled git-svn-id: http://svn.osgeo.org/postgis/trunk@13474 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/regress/lwgeom_regress.sql b/regress/lwgeom_regress.sql index 00c0465a9..d299c8b4c 100644 --- a/regress/lwgeom_regress.sql +++ b/regress/lwgeom_regress.sql @@ -105,7 +105,7 @@ DROP TABLE test_data; SELECT '#3069', ST_Summary(PostGIS_Noop('SRID=4326;POINT(1 1)'::geometry)); SELECT '#3069', ST_Summary(PostGIS_Noop('SRID=4326;LINESTRING(1 1,0 0)'::geometry)); -SELECT '#3069', replace(ST_Summary(PostGIS_Noop('SRID=4326;MULTIPOINT(1 1)')::geometry),E'\n',' '); +SELECT '#3069', replace(ST_Summary(PostGIS_Noop('SRID=4326;MULTIPOINT(1 1)'::geometry)),E'\n',' '); SELECT '#3069', replace(ST_Summary(PostGIS_Noop('SRID=4326;MULTILINESTRING((1 1,0 0))'::geometry)),E'\n',' '); SELECT '#3069', replace(ST_Summary(PostGIS_Noop('SRID=4326;POLYGON((0 0, 0 1, 1 1 ,1 0,0 0))'::geometry)),E'\n',' ');