[postgis-tickets] [SCM] PostGIS branch stable-3.0 updated. 3.0.3-24-g9e90d70
git at osgeo.org
git at osgeo.org
Wed Jul 14 10:22:47 PDT 2021
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, stable-3.0 has been updated
via 9e90d70b6ad289fa7e298f1173ff1254d558a004 (commit)
from 6a831ee189f6b4d763631695f82b226375f72018 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 9e90d70b6ad289fa7e298f1173ff1254d558a004
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date: Wed Jul 14 10:22:40 2021 -0700
Quiet regression noise for GEOS 3.10
diff --git a/regress/core/tickets.sql b/regress/core/tickets.sql
index 9b44624..30ffa63 100644
--- a/regress/core/tickets.sql
+++ b/regress/core/tickets.sql
@@ -110,10 +110,12 @@ FROM ( VALUES
) AS v(g);
-- #168 --
-SELECT '#168', ST_NPoints(g), ST_AsText(g), ST_isValidReason(g)
+SET client_min_messages = warning;
+SELECT '#168', ST_NPoints(g), ST_AsText(g), ST_isValid(g)
FROM ( VALUES
('01060000C00100000001030000C00100000003000000E3D9107E234F5041A3DB66BC97A30F4122ACEF440DAF9440FFFFFFFFFFFFEFFFE3D9107E234F5041A3DB66BC97A30F4122ACEF440DAF9440FFFFFFFFFFFFEFFFE3D9107E234F5041A3DB66BC97A30F4122ACEF440DAF9440FFFFFFFFFFFFEFFF'::geometry)
) AS v(g);
+SET client_min_messages = notice;
-- #175 --
SELECT '#175', ST_AsEWKT(ST_GeomFromEWKT('SRID=26915;POINT(482020 4984378.)'));
diff --git a/regress/core/tickets_expected b/regress/core/tickets_expected
index 9641025..ad893bb 100644
--- a/regress/core/tickets_expected
+++ b/regress/core/tickets_expected
@@ -30,7 +30,7 @@ ERROR: Invalid hex string, length (267) has to be a multiple of two!
#157|ST_Polygon|POLYGON
#157|ST_CurvePolygon|CURVEPOLYGON
#157|ST_CircularString|CIRCULARSTRING
-#168|3|MULTIPOLYGON ZM (((4275341.96977851 259186.966993061 1323.76295828331 -1.79769e+308,4275341.96977851 259186.966993061 1323.76295828331 -1.79769e+308,4275341.96977851 259186.966993061 1323.76295828331 -1.79769e+308)))|IllegalArgumentException: Invalid number of points in LinearRing found 3 - must be 0 or >= 4
+#168|3|MULTIPOLYGON ZM (((4275341.96977851 259186.966993061 1323.76295828331 -1.79769e+308,4275341.96977851 259186.966993061 1323.76295828331 -1.79769e+308,4275341.96977851 259186.966993061 1323.76295828331 -1.79769e+308)))|f
#175|SRID=26915;POINT(482020 4984378)
#178a|0
#178b|5
-----------------------------------------------------------------------
Summary of changes:
regress/core/tickets.sql | 4 +++-
regress/core/tickets_expected | 2 +-
2 files changed, 4 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list