[SCM] PostGIS branch master updated. 3.4.0rc1-945-g6896fe0fe

git at osgeo.org git at osgeo.org
Mon Feb 26 14:12:00 PST 2024


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, master has been updated
       via  6896fe0fe7d277e586cc116eed56805e967417a2 (commit)
      from  15c8d95efcff17d1d1b993a3e5480cb7c490760b (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 6896fe0fe7d277e586cc116eed56805e967417a2
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Mon Feb 26 14:11:56 2024 -0800

    Add regression test for #5677

diff --git a/regress/core/tickets.sql b/regress/core/tickets.sql
index 4b69ec20c..a7ef7bae4 100644
--- a/regress/core/tickets.sql
+++ b/regress/core/tickets.sql
@@ -1539,3 +1539,17 @@ FROM (VALUES
 ) AS t(id, a, b, r);
 
 SELECT '#5597', ST_AsGeoJSON(r.*) from (values (null::geometry)) as r(geom);
+
+SELECT '#5677',
+ st_asewkt(
+   st_union(
+     array[
+       st_geomfromtext(
+         'GEOMETRYCOLLECTION(
+           POLYGON((0 0,10 0,25 25,0 10,0 0)),
+           POLYGON((20 20,30 20,30 30,20 30,20 20))
+         )'
+       )
+     ]
+   )
+ );
diff --git a/regress/core/tickets_expected b/regress/core/tickets_expected
index 234d147ef..a374322d5 100644
--- a/regress/core/tickets_expected
+++ b/regress/core/tickets_expected
@@ -478,3 +478,4 @@ ERROR:  Geometry contains invalid coordinates
 #5639|fullywithin6|f
 #5639|fullywithin7|t
 #5597|{"type": "Feature", "geometry": null, "properties": {}}
+#5677|POLYGON((10 0,0 0,0 10,20 22,20 30,30 30,30 20,22 20,10 0))

-----------------------------------------------------------------------

Summary of changes:
 regress/core/tickets.sql      | 14 ++++++++++++++
 regress/core/tickets_expected |  1 +
 2 files changed, 15 insertions(+)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list