From a46080807b7f04832f4e0e0930c65bb84ab553fb Mon Sep 17 00:00:00 2001
From: Regina Obe <lr@pcorp.us>
Date: Mon, 23 Mar 2015 04:14:35 +0000
Subject: [PATCH] #3087 cast text to geometry lwgeom_regress failure when
 testing .with CREATE EXTENSIO

git-svn-id: http://svn.osgeo.org/postgis/trunk@13387 b70326c6-7e19-0410-871a-916f4a2858ee
---
 regress/lwgeom_regress.sql | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/regress/lwgeom_regress.sql b/regress/lwgeom_regress.sql
index 8df265cf7..00c0465a9 100644
--- a/regress/lwgeom_regress.sql
+++ b/regress/lwgeom_regress.sql
@@ -103,9 +103,9 @@ SELECT ST_MemSize(ST_collect(ST_Force2d(ST_force4d(ST_force3dm(ST_force3dz(ST_fo
 DROP TABLE test_data;
 
 
-SELECT '#3069', ST_Summary(PostGIS_Noop('SRID=4326;POINT(1 1)'));
+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)')),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',' ');
 
-- 
2.40.0