From: Mark Cave-Ayland Date: Fri, 16 Oct 2009 16:23:50 +0000 (+0000) Subject: Change "Mixed Geometry Types" message into a warning rather than an error in the... X-Git-Tag: 1.5.0b1~362 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=983eeda660f026d7008b1edbf5eaa55564657239;p=postgis Change "Mixed Geometry Types" message into a warning rather than an error in the existing join estimation test script. git-svn-id: http://svn.osgeo.org/postgis/trunk@4658 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/utils/test_joinestimation.pl b/utils/test_joinestimation.pl index e873a1827..88c0e7cbe 100755 --- a/utils/test_joinestimation.pl +++ b/utils/test_joinestimation.pl @@ -221,8 +221,7 @@ sub get_geometry_type exit(1); } if ( $res->ntuples() > 1 ) { - print STDERR "Mixed geometry types in \"$SCHEMA1\".\"$TABLE1\".\"$COLUMN1\"\n"; - exit(1); + print STDERR "WARNING: Mixed geometry types in \"$SCHEMA1\".\"$TABLE1\".\"$COLUMN1\"\n"; } return $res->getvalue(0, 0); }